8 lines
166 B
C
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;
|
|
}
|