Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
decimal digit terminates octal escape sequence
Remarks
The compiler evaluates the octal number without the decimal digit and assumes the decimal digit is a character.
Example
The following example generates C4125:
// C4125a.cpp
// compile with: /W4
char array1[] = "\709"; // C4125
int main()
{
}
If the digit 9 is intended as a character, correct the example as follows:
// C4125b.cpp
// compile with: /W4
char array[] = "\0709"; // C4125 String containing "89"
int main()
{
}