← Back to Users
ragshas's activity in the archive.
#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.
#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.