Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #31.8K
2 Posted Topics
Re: can anybody predict the output of this code? # include<iostream.h> #include<conio.h> #include<string.h> class tel_directory { char address[20]; public: char name[20]; int phoneno; void getdata( ); void dispdata( ); void modifydata( ); void deletedata( ); }; void tele_directory::getdata( ) { cout<<”\nTelephone Directory Registration”; cout<<”\nEnter Customer Name”; cin>>name; cout<<”\nEnter Phone Number”; cin>>phoneno; … | |
Hi i m a new usr just loggd in..can anyone help in developing a code 4 msking a telephone directory using class? |
The End.