Slashdot Mirror


User: ragshas

ragshas's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Question 3 Solved on Programming Puzzles · · Score: 1

    #include void main() { int a=1,b=2; a=a+b; b=a-b; a=a-b; printf("a=%d, b=%d",a,b); getch(); } output: a=2 b=1 This can be the solution in my perspective.