1
0
UAHCode/CPE435/Lab9/test4.c
2022-08-28 16:12:16 -05:00

9 lines
137 B
C

//file: test4 compile as test4
#include <stdlib.h>
int main()
{
char *x = (char*)malloc(10);
x[10] = 'a';
return 0;
}