Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int x = 0;
  6. int y = 0;
  7. int z = 0;
  8.  
  9. for(x = 0; x < 10; x++)
  10. {
  11. y++;
  12. z--;
  13. }
  14.  
  15. x = x + 10;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement