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