Home / C Programming / Typedef :: Discussion

Discussion :: Typedef

  1. In the following code what is 'P'?

      typedef char *charp;
      const charp P; 

     

  2. A.

    P is a constant

    B.

    P is a character constant

    C.

    P is character type

    D.

    None of above

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment