Report Bug
Qus :

What is the output of the following code?

main()
{
	int a, b; a=b=4;
	b=a++;
	printf("%d %d %d %d", a++, --b, ++a, b--);
}

Qus



A. 5 3 7 3
B. Syntax error
C. 5 4 5 3
D. 6 2 6 4


Solution
D. 6 2 6 4






Report Bug