Answer to Question #53990 in C++ for Guruwinder
Question #53990
Write a structure specification in c++ for the records given below.
Name_Enggcollege- char(30)
Name_university - (30)
Year_Estd - int(4)
No_students - int(5)
Name of this structure will be ENGGCOL
Name_Enggcollege- char(30)
Name_university - (30)
Year_Estd - int(4)
No_students - int(5)
Name of this structure will be ENGGCOL
Expert's answer
Solve
struct ENGGCOL
{
char Name_Enggcollege[30];
char Name_university [30];
int Year_Estd[4];
int No_students [5];
};
struct ENGGCOL
{
char Name_Enggcollege[30];
char Name_university [30];
int Year_Estd[4];
int No_students [5];
};
Need a fast expert's response?
Submit orderand get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment