C++ COURSE
C++ Mini Project
Learn C++ programming with EDUHUB Code Hub.
Student Management System
Example project using classes and objects.
#include <iostream>
using namespace std;
class Student{
public:
string name;
void display(){
cout << name;
}
};
int main(){
Student s;
s.name="Navitha";
s.display();
return 0;
}
Navitha