Q. Which of the following is a correct way to define a struct?
β
Correct Answer: (A)
struct A { int x; }
Explanation: 'struct' is used to define structures in C.