Turning Learners Into Developers
Codekilla
CODEKILLA
back to course
Lesson 12 / 7117%
Control Flow2/6

C++ Switch

Branch on a single value among many constants — case, break, default, fall-through.

switch (day)case 1:printf("Mon");case 2:printf("Tue");case 3:printf("Wed");default:printf("???");
Visual explanation diagram · click steps to walk through it

This lesson is Pro only.

Unlock every premium lesson and module — Pro from ₹299 / month (or ₹999 / year, saves ~₹2,589).

Sign in to unlock
// feedback.matters()
Did this lesson help you?