Q. How is a structure defined in C?
β
Correct Answer: (A)
struct { int x; };
Explanation: A structure is defined using the struct keyword.