#include #include #define ALPHA 1 #define BETA #define GAMMA 0 #### #include "types.h" void main() { int a, b, c; float d,e,f; #if (ALPHA) c = a+b; #endif #ifdef BETA f = e*d; #if (GAMMA) c = c + 10; #endif #endif } #### void main() { int a, b, c; float d,e,f; #if (ALPHA) c = a+b; #endif #ifdef BETA f = e*d; #endif }