Pre Processor Example in C

Pre Processor Example in C

#include
#define VAL 40; //A
#undef VAL //B
#define VAL 40 //C

main()
{
printf (“%d\n”, VAL); //D
}




No comments:

Post a Comment