หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
#line expected a line number, found 'token'
Remarks
The #line directive must be followed by a line number.
Example
The following example generates C2005:
// C2005.cpp
int main() {
int i = 0;
#line i // C2005
}
Possible resolution:
// C2005b.cpp
int main() {
int i = 0;
#line 0
}