Posts
 
Reputation
Joined
Last Seen
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
1 Commented Post
0 Endorsements
Ranked #72.8K
~179 People Reached
Favorite Forums
Favorite Tags
c++ x 2

1 Posted Topic

Member Avatar for akshayabc

#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 …

Member Avatar for gayathri balu
0
179

The End.