Question { Advent Global Solutions, 101203 }
main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer
| Is This Answer Correct ? | 106 Yes | 34 No |
Question { 16581 }
how many times of error occur in C
Answer
| Is This Answer Correct ? | 5 Yes | 2 No |