1.

  What is the output of the below c code?   #include <stdio.h> void main() {     char *s = "hello";     char *p = s;     printf("%p\t%p", p, s); }

A. Different address is printed
B. Same address is printed
C. Run time error
D. Nothing
Answer» C. Run time error


Discussion

No Comment Found