Select the correct option
atements.
What is the output of C Program?
#include
int main()
{
int a;
if(a=0)
printf("TRUE");
else
printf("FALSE");
return 0;
}
OPTIONS
True
False
Answers
Answered by
1
Answer:
False
Explanation:
Because variable is not inilized it contenains garbage value
Answered by
0
The output will be FALSE.
Because here no value is assigned to a, thus it will print FALSE.
Similar questions