STUDEN RECORD MANAGEMENT SYSTEM IN CPP

STUDEN RECORD MANAGEMENT SYSTEM IN CPP Source Code: #include<iostream> #include<fstream> #include<iomanip> using namespace std; class student { private: int rno; char name[50]; int enno; float marks; public: void getdata() { cout<<"\t\t\t\t\t Please Enter Student Details :"<<endl; cout<<"\n\n\nEnter The Roll Number of the student: "; cin>>rno; cout<<"\nEnter student's Name: "; cin.ignore(); cin.getline(name,50); cout<<"\nEnter The Enrollment Number of the student: "; cin>>enno; cout<<"\nEnter The Marks of the student in Previous Year: "; cin>>marks; ...