C
Programming and Technical
Q. main()
{
printf("%d", out);
}i
nt out=100;
A. Compiler error: undefined symbol out in function main.
Explanation: The rule is that a variable is available for use from the point of declaration. Even
though a is a global variable, it is not available for main. Hence an error.
Read Solution (Total 0)
C Other Question