c++ operator if statement code example
Example 1: conditional operator in cpp
//(expression 1) ? expression 2 : expression 3
//If expression 1 evaluates to true, then expression 2 is evaluated.
int x, y = 10;
x = (y < 10) ? 30 : 40;
cout << "value of x: " << x << endl; //prints 40
Example 2: if c++
int x = 20;
int y = 18;
if (x > y) {
cout << "x is greater than y";
}