1
0
UAHCode/CPE435/Lab9/test3.c

8 lines
166 B
C
Raw Permalink Normal View History

2022-08-28 21:12:16 +00:00
//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;
}