C | Macro & Preprocessor | Question 4

Last Updated :
Discuss
Comments
C
#include <stdio.h>
#define X 3
#if !X
    printf("Geeks");
#else
    printf("Quiz");
 
#endif
int main()
{
        return 0;
}
Geeks
Quiz
Compiler Error
Runtime Error
Tags:
Share your thoughts in the comments