Computer Science, asked by divjottandial13, 4 days ago

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 kishansavani
1

Answer:

False

Explanation:

Because variable is not inilized it contenains garbage value

Answered by MrTSR
0

The output will be FALSE.

Because here no value is assigned to a, thus it will print FALSE.

Similar questions