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