+3 votes
in Class 12 by kratos

Complete the following structure definition, to store students details with appropriate values. Students details are roll number, name and height.

.... Struct students

{

..... mo

char .....

..... height

};

1 Answer

+3 votes
by kratos
 
Best answer

struct students

{

short rno;

char name[25];

float height;

};

...