Home / C Programming / Typedef :: Discussion

Discussion :: Typedef

  1. In the following code, the P2 is Integer Pointer or Integer?

     typedef int *ptr;
     ptr p1, p2; 
    

     

  2. A.

    Integer

    B.

    Integer pointer

    C.

    Error in declaration

    D.

    None of above

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment