10 lines
112 B
C
10 lines
112 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
char c[10];
|
|
c[10] = 1;
|
|
c[-1] = 1;
|
|
|
|
return c[10];
|
|
}
|