F
Frederick Gotham
If we have the following expression:
2 < 1
What is the type of the expression, "2 < 1", or any other expression in C++
which involves comparison or inversion? More examples:
4 == 2
!3
I've a pretty good idea that it's bool, although I want to make sure it is
not int (as it is in C).
2 < 1
What is the type of the expression, "2 < 1", or any other expression in C++
which involves comparison or inversion? More examples:
4 == 2
!3
I've a pretty good idea that it's bool, although I want to make sure it is
not int (as it is in C).