नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'function' : no function prototype given: converting '()' to '(void)'
Remarks
The compiler didn't find an explicit list of arguments to a function. This warning is for the C compiler only.
This warning is off by default. For more information, see Compiler Warnings That Are Off by Default.
Example
The following example generates C4255:
// C4255.c
// compile with: /W4 /WX
#pragma warning (default : 4255)
void f() { // C4255
// try the following line instead
//void f(void) {
}
int main(int argc, char *argv[]) {
f();
}