Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
'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 ) {}