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
Describe protected access specifiers?
What is the this pointer?
How would you differentiate between a pre and post increment operators while overloading?
Difference between overloading vs. Overriding
Which is best ide for c++?
How do you write a function that can reverse a linked-list?
What return value must conversion operators have in their declaration?
What is the best c++ ide?
Write about c++ storage classes?
Write a program to concatenate two strings.
How to implement is-a and has-a class relationships?
Write a program to find the reverse Fibonacci series starting from N.
Explain what are single and multiple inheritances in c++?
You want to link a c++ program to c functions. How would you do it?
What does floor mean in c++?