הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
nonstandard extension used: constant 0 as function expression. Use '__noop' function intrinsic instead
Remarks
You cannot use the constant zero (0) as a function expression. For more information, see __noop.
Example
The following example generates C4353:
// C4353.cpp
// compile with: /W1
void MyPrintf(void){}
#define X 0
#if X
#define DBPRINT MyPrint
#else
#define DBPRINT 0 // C4353 expected
#endif
int main(){
DBPRINT();
}