#include<iostream.h>
#include<conio.h>
int main()
{
clrscr();
struct student
{
int id_no;
char name[40];
char address[40];
char combination[3];
int age;
}newstudent;
cout<<"**** Enter student information : **** "<<endl<<endl;
cout<<"Enter student id_number : ";
cin>>newstudent.id_no;
cout<<"Enter name of the student :";
cin>>newstudent.name;
cout<<"Enter address of student : ";
cin>>newstudent.address;
cout<<"Enter combination of the student:";
cin>>newstudent.combination;
cout<<"Enter age of the student : ";
cin>>newstudent.age;
cout<<endl<<"***The entered student information is : ***"<<endl<<endl;
cout<<"Student id_number :"<<newstudent.id_no;
cout<<endl<<"Name of the student : "<<newstudent.name;
cout<<endl<<"Address of the student : "<<newstudent.address;
cout<<endl<<"Combination of the student : "<<newstudent.combination;
cout<<endl<<"Age of the student : "<<newstudent.age;
getch();
return 0;
}