✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
typedef struct Student
{
int rollno;
int total;
} Student;
Student s1;
struct Student s2;
Which statement is correct?