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

8 lines
166 B
C

//file: test 3 compile as test3
#include <stdlib.h>
int main()
{
char *x = (char*)malloc(100); /* or, in C++, "char *x = new char[100] */
return 0;
}