Material between #if 0 and #endif will be ignored by the compiler. (Your preprocessor may actually disable it before the โcompilerโ can even look at it!)
#if 0 Have you tried jQuery? @Compiler Stop ignoring me!! #endif
You will have better control if you use #ifdef s:
//
Just uncomment the first line and your #ifdef DEBUG code #ifdef DEBUG suddenly become visible to the compiler.
PS This should eliminate the confusion:
cout << "c"; */
The output should be "c" if your compiler does not give you any errors for the last */ .
source share