Compiling...
In C, Control Flow statements allow a program to evaluate a condition and alter its execution path based on whether that condition is True (non-zero) or False (0).
C provides four primary structures for if-based conditional branching:
Simple if
if-else
else-if Ladder
Nested if-else