Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Objective-C Basics (Retired) Functional Programming in C Conditionals - Switch

Humza Choudry
Humza Choudry
237 Points

Switch Break print question.

Why is it that when i execute my code the outout does not fully show all of the other statements, as indicated in the further reading that it should.

Notice the usage of the break statement in each of the cases. This is because, once a matching case is found, not only are its statements executed, but so are the statements for all following cases:

 int x = 0;
 switch (x)
   {
     case 0:
       puts ("x is 0");
     case 1:
       puts ("x is 1");
     default:
       puts ("x is something else");
   }

The output of that example is:

 x is 0
 x is 1
 x is something else