adspace
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
Answer Posted / Kunal Kishre
if (4 <= x && x <= 11) y = 2 * x;
Post New Answer View All Answers
Can union be self referenced?
1279
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
1172
daily Routine of father
1492
What character terminates all character array strings a) b) . c) END
1403
What is the latest version on c++?
1217