else-if Ladder in C — a practical guide to C else if ladder with clear examples you can reuse in real projects.
C Programming Tutorial Series (31/102). Prefer one article? Read the complete C programming tutorial.
Short description
Order conditions from most specific to most general.
else-if
if (temp >= 30) {
puts("Hot");
} else if (temp >= 20) {
puts("Warm");
} else {
puts("Cool");
}