OBJECT ORIENTED PROGRAMMING PROBLEM
OBJECT ORIENTED PROGRAMMING PROBLEM # include < iostream > using namespace std ; class student { private : char name [ 20 ]; int roll , mark1 , mark2 , mark3 , total , percentage ; public : void getdata (){ cout << " Enter name of student : " ; cin >> name ; cout << endl ; cout << " Enter roll no of student : " ; cin >> roll ; cout << endl ; cout << " Enter Marks of subject 1 of student : " ; cin >> mark1 ; cou...