NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4533

initialization of 'variable' is skipped by 'instruction'

An instruction in your program changed the flow of control, such that, an instruction that initialized a variable was not executed. The following sample generates C4533:

#include <stdio.h>
void main(void) {
   if (1) 
      goto Label;

   int i = 100;

   Label:   // C4533
      printf("\n%d", i);   // prints an uninitialized value
}