Programming Style
Indentation: to show the hierarchy of logic.
if (x < y) {
printf ("x is smaller than y\n");
if (y < z)
printf ("y is smaller than z\n");
else
printf ("y is larger than or equal to z\n");
}
else
printf ("x is larger than or equal to y\n");