Advertisement
bertao

algebra 1

Mar 27th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2. int main (){
  3. int i=20 , j=20;
  4.  
  5. printf("%d\n",i);
  6. i++;
  7. printf("%d\n",i);
  8.  
  9. printf("%d\n",j);
  10. --j;
  11. printf("%d\n",j);
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement