Compiler Warning (level 1) C4353
ekstensi nonstandar yang digunakan: konstanta 0 sebagai ekspresi fungsi. Gunakan fungsi '__noop' intrinsik sebagai gantinya
Anda tidak dapat menggunakan konstanta nol (0) sebagai ekspresi fungsi. Untuk informasi selengkapnya, lihat __noop.
Sampel berikut menghasilkan 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();
}