PREDICT THE OUTPUT FOR THE FOLLOWING CODE
#includestdio.h
#define NEGATIVE -1
#define ZERO 0
#define ONE 1
int main(){
if(ZERO)
printf("0");
else if(NEGATIVE)
printf("-1");
else
printf("1");
return 0;
}

Posted on by