Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 743 Bytes

File metadata and controls

24 lines (17 loc) · 743 Bytes

Multi-File Student Data Program

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.

What It Does:

  • Input: Takes student name, roll number, and marks from the user.
  • Output: Displays the complete data as a simple report card.

Program Structure:

The program is split into 3 simple files:

  1. student.h - Contains the data structure (struct).
  2. student.cpp - Contains functions for input and output.
  3. main.cpp - Contains the main menu and loop.

How to Run:

g++ main.cpp student.cpp -o program
./program

Maintained by Ashlok Kumar TScom-dew