Question { Advent Global Solutions, 100774 }
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 { 16398 }
how many times of error occur in C
Answer
| Is This Answer Correct ? | 5 Yes | 2 No |