Displaying Source Code(s)
|
|
Student Database (DBMS)
--------------------------------------------------------------------------------
Description : This is a programme which is really simple it only
uses functions it is student database in which you can show the
output in many ways. TO KNOW SOME SECRETS ABOUT THE PROGRAME
MAIL ME.
#include<iostream.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
#include <process.h>
#include <iomanip.h>
void display();
//Declaration of the functions used as global type
void disppart();
void dispdes();
void dispasc();
void toppers();
void delrec();
void avgdisp();
void insert();
void modi();
int mm,m1,m2,m3,chh1;
//Declaration of the variables as global type
char mname[20];
char msem[20];
int id[20];
//declaration of the variables used as global type
char name[20][20];
char sem[20][10];
int marks1[20];
int marks2[20];
int marks3[20];
int total[20];
int avg[20];
int size,i,ch;
void main()
{
aa:
clrscr();
cout<<endl;
cout<<" ST.XAVIER'S SCHOOL "<<endl<<endl<<endl;
int l;
//Accepting the password from the user
char ch1,pass[7];
cout<<"Please enter the password for forwarding: ";
l=0;
while (l<7)
{
ch1=getch();
cout<<"*";
pass[l]=ch1;
l++;
}
pass[l]='
|
|
|