I have a piece of code which looks like this,
#ifdef A printf("A"); #else #ifdef B printf("B"); #endif #endif
<