Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(int argc, char* argv[]) {
  5. float timeout = time(NULL) + 2.5;
  6.  
  7. while(time(NULL) < timeout) {
  8. printf("Hello Worldn");
  9. }
  10.  
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement