Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <time.h>
- int main(int argc, char* argv[])
- {
- int input;
- scanf("%d", &input);
- time_t init = time(NULL);
- while (time(NULL)-init < input); //yield
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement