Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. int main() {
  3. /*
  4. int n=0;
  5. while(n<100){
  6. printf("hello world!\n");
  7. n++;
  8. }
  9. */
  10. for(int n=0; n<100; n++){
  11. printf("hello world!\n");
  12. }
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement