Comparison Operators
Comparison Operators
int main()
{
int num1 = 0;
int num2 = 0;
// Note: another way to declare and initialize above
// variables is:
// double num1 = 0, num2 = 0;
// This is possible since both variables have the same
// data type, that's why int only appears once and each
// variable and initialization is separated by commas,
// then whole statement is terminated by a semicolon.
return 0;
}