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