This is a simple C++ program that takes student data as input and displays it on the terninal. It is written using multiple files to keep the code clean and organized.
- Input: Takes student name, roll number, and marks from the user.
- Output: Displays the complete data as a simple report card.
The program is split into 3 simple files:
student.h- Contains the data structure (struct).student.cpp- Contains functions for input and output.main.cpp- Contains the main menu and loop.
g++ main.cpp student.cpp -o program
./program