Store details using structure
The source code for program that can details of admission in a structure, copy it in note pad and save it as ".cpp". The ".cpp" and ".exe " files will soon be avalible to download.
/*
*
* Copyright 2011 techstream.org < techstream.org[at]gmail.com >
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
# include <iostream.h>
# include<conio.h> //to use clear screen function
void main()
{
clrscr();
struct date{
int dd;
int mm;
int yy;
};
struct adm{
int admno;
char name[20];
date dx;
}a1;
cout<<"\n enter name ";
cin>>a1.name;
cout<<"enter admission number ";
cin>>a1.admno;
cout<<"enter day of admission ";
cin>>a1.dx.dd;
cout<<"enter month of admission ";
cin>>a1.dx.mm;
cout<<"enter year of admission ";
cin>>a1.dx.yy;
cout<<"admission number "<<a1.admno<<" "<<a1.name<<" joined in "<<a1.dx.dd;
cout<<"/"<<a1.dx.mm<<"/"<<a1.dx.yy;
getch();
}
Previous:
setup a test server in Windows
setup a test server in Windows