Advertisement
bertao

algebra 2

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