Advertisement
Guest User

C Program

a guest
Jan 30th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. main()
  5. { //While it's true(always) it will print hello world
  6. while(1){
  7. printf("Hello World");
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement