Top

Discussion

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: B

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment