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
~68 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for mahesh19_19

[CODE=CPP]#include<iostream.h> #include<conio.h> class student { public: int rno; public: void get() { cout<<"\n\nEnter the Roll No:"; cin>>rno; } }; class test1 : public virtual student { protected: float score1; public: void get1() { cout<<"\n\n1st test score of "<<rno<<" is :"; cin>>score1; } }; class test2 : public virtual student { …

Member Avatar for mahesh19_19
0
68