Home / C Programming / Typedef :: Discussion

Discussion :: Typedef

  1. Point out the error in the following code?

     typedef struct
     {    
         int data;   
         NODEPTR link; 
    }*NODEPTR; 
    

  2. A.

    Error: in *NODEPTR

    B.

    Error: typedef cannot be used until it is defined

    C.

    No error

    D.

    None of above

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment