P216. WAP to define a macro without its body. Get link Facebook X Pinterest Email Other Apps #include<stdio.h> #define op #undef op #ifndef op void main() { printf("Task 1..\n"); } #else void main() { printf("Task 2..\n"); } #endif Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment