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 #107.67K
1 Posted Topic
a simple program for overloading input and output operators in this program we use overloading of istream(>>) and ostream(<<) operators to change their behaviour. #include<iostream.h> class sowmya { int a,b; public: friend istream &operator >>(istream &x,sowmya &s)/*we use friend function because it gives direct access to private members a and …
The End.
sowmyadantuluri