Write a program to interchange two variables without using
the third variable?
Answer
Is This Answer Correct ? | 23 Yes | 44 No |
Question { Geometric Software, 10295 }
What compilation do?
Answer
Is This Answer Correct ? | 3 Yes | 0 No |
Question { Advent Global Solutions, 97099 }
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 { 6089 }
what is use#in c
Answer
Is This Answer Correct ? | 8 Yes | 0 No |
Question { 8764 }
what is compiler
Answer
Is This Answer Correct ? | 2 Yes | 1 No |