Top

Discussion

In the following program snippet, both s1 and s2 would be variables of structure type defined as below and there won't be any compilation issue.

typedef struct Student
{
 int rollno;
 int total;
} Student;
 
Student s1;
struct Student s2;

 

  • A.TRUE
  • B.FALSE

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment