Input
Output
#include <stdio.h> #define NOVALUE void main() { int i=0; #ifdef NOVALUE i=2; #else printf("Enter the Value of i is:"); scanf("%d", &i); #endif printf("The Value of i: %d\n", i); }