Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. main() {
  4. int a = 27;
  5. int b = 13;
  6.  
  7. printf("a:%d \n",a);
  8. printf("b:%d \n",b);
  9.  
  10. a=a+b;
  11. b=a-b;
  12. a=a-b;
  13.  
  14. printf("a:%d \n",a);
  15. printf("b:%d \n",b);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement