What’s the syntax of the if
statement?
What’s the idiom to do 0 **≤** i < n
, where i
is the input?
How do we do Compound Statements with if
?
How do we add an else
statement to our if
syntax?
How do we implement Cascaded if
Statements?
What is the “Dangling else
" Problem? How do we solve it?
What is the syntax for the Conditional (Ternary) Operator to make Conditional Expressions?
How do we declare Boolean Type variables in C?