Q. What is the correct way to define a structure?
β
Correct Answer: (C)
struct person { int age; };
Explanation: Correct syntax for defining a structure named 'person'.