Write a program to interchange two variables without using
the third variable?
Answer
| Is This Answer Correct ? | 23 Yes | 44 No |
Question { Geometric Software, 11779 }
What compilation do?
Answer
| Is This Answer Correct ? | 3 Yes | 0 No |
Question { Advent Global Solutions, 100743 }
main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer
| Is This Answer Correct ? | 20 Yes | 46 No |
Question { 6628 }
what is use#in c
Answer
| Is This Answer Correct ? | 8 Yes | 0 No |
Question { 10264 }
what is compiler
Answer
| Is This Answer Correct ? | 2 Yes | 1 No |