1.

Can you combine the following two statements into one? char *p;p = (char*) malloc();

A. char *p = (char) malloc();
B. char p = *malloc();
C. char *p = (char *)(malloc*)();
D. char *p = (char*)malloc();
Answer» E.


Discussion

No Comment Found