Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Mini project student database system in c++ source
no vote
This is simple student information system project.Wher you can do following things 1. Add    Records           2. List   Records           3. Modify Records           4. Delete Records           5. Exit   Program to store data file is used. Here is the source code,compile it in code::blocks #include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <conio.h> #include <iomanip> using namespace std; int main() { FILE *fp, *ft; char another, choice; struct student { char first_name[50], last_name[50]; char course[100];
tiger525787
2016-08-23
0
1
No more~