#include <cstdio> #define UNKO if ( false ) ; else //#define UNKO int main() { UNKO int i = 0, j = 2; std::printf("%d\n", i); std::printf("%d\n", j); }
Standard input is empty
prog.cpp: In function ‘int main()’: prog.cpp:8:14: warning: unused variable ‘i’ [-Wunused-variable] prog.cpp:8:21: warning: unused variable ‘j’ [-Wunused-variable] prog.cpp:10:22: error: ‘i’ was not declared in this scope prog.cpp:11:22: error: ‘j’ was not declared in this scope
Standard output is empty