Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which of the following structure declaration will throw an error?
  2. A.
    struct temp{}s;
    main(){}
    B.
    struct temp{};
    struct temp s;
    main(){}
    C.
    struct temp s;
    struct temp{};
    main(){}
    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment