INFO: Initializing in a Loop Within a Case Statement

ID: Q86479


The information in this article applies to:
  • Microsoft C/C++ for MS-DOS, version 7.0
  • Microsoft Visual C++ for Windows, 16-bit edition, versions 1.0, 1.5
  • Microsoft Visual C++, 32-bit Editions, versions 1.0, 2.0, 4.0, 5.0


SUMMARY

In the products listed above, the following errors can occur when you define a variable in a loop that is within a case statement. The following error occurs when "default" is the next case:

C2361 Initialization of 'x' is skipped by 'default' label
When default is not next, the following error appears:
C2360 Initialization of 'x' is skipped by 'case' label
A similar error also occurs when a goto is before the loop:
C2362 Initialization of 'x' is skipped by 'goto label name'


MORE INFORMATION

In the two samples below, it can be seen that the variable is initialized when it is declared. The errors are generated because the scope of the variable, when it is defined and initialized, is in the same scope as the case label or the goto label. Thus, there is a chance that the initialization will not occur. There are ways to ensure that the initialization is performed:

  • Enclose the for loop in "{}" (curly braces). This will cause the for loop to be in a different scope than the case and goto labels.


  • -or-
  • Define the loop variable right before entering the loop. This works only for simple types, not for user-defined types.


  • -or-
  • Define the variable without initializing it. Any assignments made to that variable after its definition are considered assignments, not initializations.


Sample Code 1


#include <stdio.h>

/* Compile Options needed: none.
*/ 

void main( void )
{
  int var;

  switch( var )
  {
    case 1 : for (int i = 0; i < 3; ++i)
             {
                printf("In loop");
             }
             break;

    case 2 : printf("Case 2");            // C2360
             break;

    default : printf("Default");          // C2361
              break;
  }
} 

Sample Code 2


#include <stdio.h>

/* Compile options needed: none.
*/ 

void main (void)
{
   goto label;

   int var = 0;

   label:;                                // C2362
} 

Additional query words:

Keywords : kbcode kberrmsg kbLangCPP kbVC100 kbVC150 kbVC200 kbVC400 kbVC500
Version : MS-DOS:7.0; WINDOWS:1.0,1.5; WINDOWS NT:1.0,2.0,4.0,5.0
Platform : MS-DOS NT WINDOWS
Issue type : kbinfo


Last Reviewed: July 6, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.