<Apti
Code
/>
Back
Question 548: Can you combine the following two statements into one?char *p; p = (char*) malloc(100);
tcs
wipro
infosys
general
aptitude
pointers
No answer description is available.Let's discuss.
char p = *malloc(100);
char *p = (char) malloc(100);
char *p = (char*)malloc(100);
char *p = (char *)(malloc*)(100);
Submit Answer
Show Answer
Previous
Next