Home » C Programming » Structures » Question
  1. Which of the following structure declaration is incorrect ?
    1. struct aa
      {
      int a;
      float b;
      };
    2. struct aa
      {
      int a;
      float b;
      struct aa var;
      };
    3. struct aa
      {
      int a;
      float b;
      struct aa *var;
      };
    4. struct aa
      {
      int a;
      float b;
      struct aa **var;
      };
Correct Option: B

We can not create structure variable until we know the size of structure.



Your comments will be displayed only after manual approval.