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 / tarun
int1 = 12
int = 18 (not int 2)
int 3 = 21
then 1nt1 <int2, int2 value is not known
also int2< int3 , int2 value is not known
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are separators in c++?
What is command line arguments in C++? What are its uses? Where we have to use this?
How do I tokenize a string in c++?
Distinguish between a # include and #define.
What is dynamic and static typing?
Can turbo c++ run c program?
Why do we need runtime polymorphism in c++?
Differentiate between an external iterator and an internal iterator?
Can we overload operator in c++?
Is dev c++ a good compiler?
What is istream and ostream in c++?
How the virtual functions maintain the call up?
What is a constructor in c++ with example?
Tell me can a pure virtual function have an implementation?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.