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
How does atoi function work?
What is the difference between public and private data members?
How const int *ourpointer differs from int const *ourpointer?
Why c++ is not a pure oop language?
Why is c++ called oops?
State two differences between C and C++.
Is c++ double?
What is the best ide for c++?
Is std :: string immutable?
Explain the difference between realloc() and free() in c++?
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
How the endl and setw manipulator works?
What is a catch statement?
Why cstdlib is used in c++?
Describe private, protected and public?