1.

What will be the output of the program ? #include int main() { char *p; p="hello"; printf("%s\n", *&*&p); return 0; }

A. llo
B. hello
C. ello
D. h
Answer» C. ello


Discussion

No Comment Found