หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : name in formal parameter list illegal
Remarks
The identifier caused a syntax error.
This error can be caused by using the old style for the formal parameter list. You must specify the type of formal parameters in the formal parameter list.
Example
The following example generates C2081:
// C2081.c
void func( int i, j ) {} // C2081, no type specified for j
Possible resolution:
// C2081b.c
// compile with: /c
void func( int i, int j ) {}