Answers

Question and Answer:

  Home  C Pointers

⟩ Can you combine the following two statements into one? char *p; p = (char*) malloc(100); A. char p = *malloc(100); B. char *p = (char) malloc(100); C. char *p = (char*)malloc(100); D. char *p = (char *)(malloc*)(100);

Option C

(char *p = (char*)malloc(100);)

 271 views

More Questions for you: