A

Admin • 833K Points
Coach

Q. What is the correct way to define a structure?

  • (A) structure person { int age; };
  • (B) struct { int age; } person;
  • (C) struct person { int age; };
  • (D) define struct { int age; };
  • Correct Answer - Option(C)
  • Views: 24
  • Filed under category C Programming
  • Hashtags:

Explanation by: Admin

Correct syntax for defining a structure named 'person'.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.