Joined
Last Seen
-1 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
0 Endorsements
Ranked #72.8K
1 Posted Topic
Re: #include<iostream.h> #include<conio.h> int &maxref(int &a, int &b) { if (a>b) return a; else return b; } void main() { int x=20,y=30, max=0; clrscr(); maxref(y,y)=-1; cout<<"\n value of x is :"<<x; cout<<"\n value of y is :"<<y; getch(); } This program output is value of xis 20 value of y is … |
The End.