नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'function' : uses old-style declarator
Remarks
The specified function declaration is not in prototype form.
Old-style function declarations should be converted to prototype form.
Example
The following example shows an old-style function declaration:
// C4131.c
// compile with: /W4 /c
void addrec( name, id ) // C4131 expected
char *name;
int id;
{ }
The following example shows a prototype form:
void addrec( char *name, int id )
{ }