Q. What will be output for the following code?
Code:
#include <stdio.h>
#define TRUE 1
int main( ) {
printf( ""Value of TRUE : %d
"", TRUE);
return 0;
}
β
Correct Answer: (B)
1