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