#include <stdio.h> #include <stdlib.h> void fun( void ); int main( void ) { #define ABC 5 printf("%d\n",ABC); #undef ABC fun (); system("PAUSE"); return 0; } void fun( void ) { #define ABC 'a' printf("%c\n",ABC); #undef ABC }