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 4) C4125

decimal digit terminates octal escape sequence

The compiler evaluates the octal number without the decimal digit and assumes the decimal digit is a character.

Example

char array1[] = "\\709";

If the digit 9 is intended as a character, correct the example as follows:

char array[] = "\\0709";  /* String containing "89" */