Which of the following statement is correct about the code snippet given below?
#include < stdio>
int main()
{
int a = 10, b = 2, c;
a = !( c = c == c) && ++b;
c += ( a + b- -);
printf( “ %d %d %d”, b, c, a);
return 0;
}
Answer: A
No answer description available for this question.