if int1 has the value 12, int has the value 18, and int3 has
the value 21, what is the result:
int1 < int2 && int2 < int 3
Answer Posted / murad shaikh
here int1=12
int2=18 (int=18, is given as int2)
int3=21
so
int1 < int2 && int2 < int3
12 < 18 && 18 < 21
ans = 21;
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Write a program using display() function which takes two arguments.
Can manipulators fall in love?
Explain what data encapsulation is in c++?
What's the hardest coding language?
Can we make copy constructor private in c++?
Explain how overloading takes place in c++?
What is the standard template library (stl)?
What are the advantages of early binding?
What is input operator in c++?
Define namespace in c++?
How the delete operator differs from the delete[]operator?
What is c++ code?
In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
How do I start a c++ project?
what is Loop function? What are different types of Loops?