Question #13633

Declare a structure data type named studentType to store the following data about a student: student name, student id, course, year enrolled.

Expert's answer

struct studentType{
& char name[50];
& int id;
& int course;
& int year;
& };

LATEST TUTORIALS
APPROVED BY CLIENTS