What is the output of this C code?
int main()
{
int y = 1;
if (y & (y = 2))
printf("true %d\n");
else
printf("false %d\n");
}
Answer: C
No answer description available for this question.