#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
Array is an lvalue or not?
Explain the use of function toupper() with and example code?
how to write a c program to print list of fruits in alpabetical order?
What is the value of uninitialized variable in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
difference between native and cross compilers
Find MAXIMUM of three distinct integers using a single C statement
Explain is it valid to address one element beyond the end of an array?
what is the format specifier for printing a pointer value?
What is a pointer value and address in c?
How many data structures are there in c?
what is the syallabus of computer science students in group- 1?
What are near, far and huge pointers?
Explain what is the most efficient way to store flag values?
How can I get back to the interactive keyboard if stdin is redirected?