P216. WAP to define a macro without its body.

 

#include<stdio.h>

 

#define op

#undef op

 

#ifndef op

void main()

{

        printf("Task 1..\n");

}

#else

void main()

{

        printf("Task 2..\n");

}

#endif

Comments