Source:
x
1
// classicalComparison.cpp
2
3
int main() {
4
5
double x = -3.5;
6
unsigned int y = 7;
7
8
auto res = x < y; // (1)
9
10
}
Insight:
1
1
Console:
// classicalComparison.cpp
int main() {
double x = -3.5;
unsigned int y = 7;
auto res = x < y; // (1)
}