IDNLearn.com provides a collaborative environment for finding and sharing knowledge. Ask anything and get well-informed, reliable answers from our knowledgeable community members.

What is the output of the following code


#include
int main()
{
int a 10, b = 2, c;
a = 1(c = c = c) && ++b;
printf ("%d %d %d", b, c, a);
return 0;