Kizspy | Question: 37
(Choose 1 answer)
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int a,b,c;
a = b c = 10;
Ca++ || ++b && ++c;
printf("%d %d %d",c, a, b);
return 0;
FJOVERFLOW.COM
A. 1 11 10
B. 10 11 1
C. 10 11 10
D. 11 10