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