หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
empty character constant
Remarks
The empty character constant ( ' ' ) is not permitted.
Example
The following example generates C2137:
// C2137.cpp
int main() {
char c = ''; // C2137
char d = ' '; // OK
}