devxlogo

Declare Variables between Case and Break in a Switch Statement

Declare Variables between Case and Break in a Switch Statement

The compiler reports an error if you try to compile a piece of code like the one follows:

 int x = 9;switch(x){	case 1:		int i = 0;	break;	case 2:		int k = 1;	break;	default:		break;}

The compiler reports the error like this:”initialization of ‘i’ is skipped by ‘case’ label”.

To avoid this error, just put opening and closing braces between the case and break statements. Then write the code to include the variable declarations in between these braces.

The following code works fine:

 int x = 9;switch(x){	case 1:		{		int i = 0;		}	break;	case 2:		{		int k = 1;		}	break;	default:		break;}
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist