Program : Subject Management System Language : - TopicsExpress



          

Program : Subject Management System Language : C++ _________________________________ #include #include #include #include #include #include #include using namespace std; struct subjects { int english, maths, science, genKnow, pakStudies; }; struct student { char name[20]; int regNo; int totalMarks; subjects thisSubject; }; struct questions { char question[5][60]; int answer; }; // Student Name and Details void studentName(student thisStudent[], int &index); void showDetails(student thisStudent[], int &index); // Subject Questions void englishQuestions(student thisStudent[], int &index); void mathsQuestions(student thisStudent[], int &index); void sciecneQuestions(student thisStudent[], int &index); void genkQuestions(student thisStudent[], int &index); void paksQuestions(student thisStudent[], int &index); int main() { int choice, totalMarks, index = 0; char name[20]; student thisStudent[100] = {0}; studentName(thisStudent, index); srand(time(0)); while(choice != 8) { cout
Posted on: Mon, 05 Aug 2013 15:35:37 +0000

Trending Topics



Recently Viewed Topics




© 2015