#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 self-referential structure in c programming?
Why doesnt that code work?
What is conio h in c?
What are the valid places to have keyword “break”?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Write a program of advanced Fibonacci series.
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What is the use of a semicolon (;) at the end of every program statement?
Do you have any idea about the use of "auto" keyword?
What is substring in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is function definition in c?
How can I trap or ignore keyboard interrupts like control-c?
Give differences between - new and malloc() , delete and free() ?
How to Throw some light on the splay trees?