Student Management System Project
Student Management System Project
1. Introduction to C++
C++ is a widely used programming language that supports object-oriented, procedural, and generic
programming features.
It is known for its performance and is often used in system software, game development, and
real-time simulation.
C++ allows efficient memory management and gives the programmer control over system
resources, making it suitable for building applications like a Student Management System.
Hardware:
- RAM: 4 GB or more
Software:
3. Design
The student management system uses a simple design with a class "Student" that holds student
data,
such as roll number, name, and marks. The system uses various functions to add, display, search,
- Class: Student
4. Coding
Here is the complete C++ code for the Student Management System, which includes the ability to
class Student {
private:
int rollNumber;
string name;
float marks;
public:
Student(int rollNumber, string name, float marks) {
this->rollNumber = rollNumber;
this->name = name;
this->marks = marks;
}
5. Output
Sample Output:
1. Add Student
Roll Number: 1
Marks: 85.5
--------------------
6. Bibliography
- Cplusplus.com: https://www.cplusplus.com/doc/tutorial/