הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'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 ) {}