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