Advertisement
Guest User

Untitled

a guest
Mar 8th, 2011
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i;
  6. for(i=0; i < 10; i++)       //loop 10 times
  7.  
  8.      {
  9.         printf("Hello, World!\n");  //put the string to the output
  10.          }
  11. return 0;           //tell OS the program exited without errors.
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement