View Single Post
  #6 (permalink)  
Old 08-14-2008, 12:19 PM
sowmya_vvns sowmya_vvns is offline
Junior Member
 
Join Date: Aug 2008
Posts: 11
Default

int a=10,b=20;

a=a+b;
b=a-b;
a=a-b;



printf("%d %d",a,b);
this code will work fine whether a >b or a
Reply With Quote