What will be the output of the program ? int main() { char *p; p="hello"; printf("%s\n", *&*&p); return 0; }
int main() { char *p; p="hello"; printf("%s\n", *&*&p); return 0; }
llo
hello
ello
h
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment