नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
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()
{
}