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
What is microsoft c++ redistributable?
Ask to write virtual base class code?
What are the c++ access specifiers?
What is general format for a prototype?
What is else if syntax?
Is c++ an oop?
Can I learn c++ without c?
How do pointers work?
What is constructor and destructor in c++?
What is the best book for c++ beginners?
What do the keywords volatile and mean mutable?
What is ctime c++?
What are pointer-to-members? Explain.
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Explain "const" reference arguments in function?