Input
Output
#include <stdio.h> #define N 1 void main() { #if (N==0) printf("The Number value is Zero"); #else printf("The Number value is Non-Zero"); #endif }