Home » C Programming » Structures » Question
  1. Which of the following structure declaration will throw an error?
    1. struct temp{};
      struct temp s;
      main(){}
    2. struct temp s;
      struct temp{};
      main(){}
    3. struct temp{}s;
      main(){}
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.