Q. How to initialize a pointer to an array of 10 char?
β
Correct Answer: (D)
p = (char *) malloc(10 * sizeof(char));
You must be Logged in to update hint/solution