Answer to Question #53990 in C++ for Guruwinder
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
1
2015-08-07T01:55:25-0400
Solve
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 order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment