Home » C Programming » Pointers

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

Correct Answer: char *p = (char*)malloc(100);

← Previous Question Next Question→

More Questions from Pointers

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion