What will be the output of the following function?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts(NULL); else if(FALSE) puts(TRUE); else puts(FALSE); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following function?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts(NULL); else if(FALSE) puts(TRUE); else puts(FALSE); }