1
0
UAHCode/CPE435/Lab9/test4.c

9 lines
137 B
C
Raw Normal View History

2022-08-28 21:12:16 +00:00
//file: test4 compile as test4
#include <stdlib.h>
int main()
{
char *x = (char*)malloc(10);
x[10] = 'a';
return 0;
}