Posts
 
Reputation
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
~142 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for navinrahim

Rewrite the following program after removing the syntactical error(s) if any. Underline each correction. [CODE]#include<iostream.h> #include<conio.h> class employee { int no; class data { int dd,mm,yy; public: void print_data() { cout<<dd<<mm<<yy; } }; data dob; public: data doj; void prin_t() { doj.print_data(); cout<<dob.dd<<dob.mm<<dob.yy; } }; void main() { employee 1emp; …

Member Avatar for deceptikon
0
142