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
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
What is the precedence when there is a global variable and a local variable in the program with the same name?
Explain differences between alloc() and free()?
What is object in c++ wikipedia?
What do you mean by stack unwinding in c++?
Is c++ a good beginners programming language?
What are static variables?
What is a driver program?
Can create new c++ operators?
Describe new operator and delete operator?
What is the error in the code below and how should it be corrected?
What is data binding in c++?
Explain what is oop?
What is the best c++ ide?
Is swift a good first language?