6677

Untitled

Nov 24th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. for (int i = 0; i < 16; i++) {
  5. printf("%d\n", i);
  6. }
  7.  
  8. int looping = 1;
  9. while (looping)
  10. {
  11. printf("looping");
  12. looping = 0;
  13. }
  14.  
  15. if (1 > 2)
  16.  
  17. { printf("Well math sucks"); }
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment