Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <windows.h>
  4.  
  5. int main(){
  6.  
  7. int sec=0;
  8. int i=0;
  9.  
  10. while(i<86400){
  11. system("cls");
  12.  
  13. printf("%ds",sec);
  14.  
  15. Sleep(1000);
  16. sec++;
  17. }
  18.  
  19. return 0;
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement