This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<conio.h> | |
//#include<math.h> | |
using namespace std; | |
class student | |
{ | |
int roll; | |
char name[20]; | |
public: | |
class date | |
{ | |
int day; | |
int month; | |
int year; | |
public: | |
void read(); | |
void show(); | |
} dob ;//object of nested class | |
void read() | |
{ | |
cout<<"enter roll "; | |
cin>>roll; | |
cout<<"\nenter name "; | |
cin>>name; | |
dob.read(); | |
} | |
void show() | |
{ | |
cout<<"\nRoll\t "<<roll; | |
cout<<"\nname "<<name; | |
dob.show(); | |
} | |
}s1; | |
void student::date::read() | |
{ | |
cout<<"enter day\n"; | |
cin>>day; | |
cout<<"enter month\n"; | |
cin>>month; | |
cout<<"enter year\n"; | |
cin>>year; | |
} | |
void student::date::show() | |
{ | |
cout<<" \nday\t"<<day; | |
cout<<" \nmonth\t"<<month; | |
cout<<" \nyear\t"<<year; | |
} | |
int main() | |
{ | |
s1.read(); | |
s1.show(); | |
getch(); | |
return 0; | |
} | |
Comments
Post a Comment
Thanks for the comment and don't forget to subscribe.