A
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;
}
#define TRUE 1
int main( ) {
printf( ""Value of TRUE : %d
"", TRUE);
return 0;
}
- Correct Answer - Option(B)
- Views: 13
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.