Report Bug
Qus : Which properly declares a variable of struct Student?
QusWhich properly declares a variable of struct Student?

A. struct stu;
B. struct Student stu;
C. stu;
D. int stu


Solution
B. struct Student stu;






Report Bug