Home / C Programming / Pointers :: Discussion

Discussion :: Pointers

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

    llo

    B.

    hello

    C.

    ello

    D.

    h

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment