#ifdef TRUE
int I=0;
#endif
main()
{
int j=0;
printf("%d %d\n",i,j);
}
Answer Posted / jai
Compilation error since 1) TRUE definition is not visible
in above program, 2) i variable is not declared.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is a protocol in c?
what are bit fields in c?
What are global variables?
Difference between goto, long jmp() and setjmp()?
What is static identifier?
Create a simple code fragment that will swap the values of two variables num1 and num2.
How does sizeof know array size?
Is struct oop?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the description for syntax errors?
What's the right way to use errno?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Why do we use namespace feature?
What is dangling pointer in c?
Who is the founder of c language?