Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. The correct syntax to use typedef for struct is.
  2. A.
    typedef struct temp
    {
          
    B.
    typedef struct
    {
          int a;
    }TEMP;
    C.
    struct temp
    {
          int a;
    };
    typedef struct temp TEMP;
    D.
    All of the mentioned

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment