#include #ifdef FOO #define EVEN(x) !(x%2) #endif #ifndef DBAR #define BAZ 333 #endif int main(int argc, char** argv) { int i = EVEN(42) + BAZ; printf("%d\n",i); return 0; }