Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <unistd.h>
- #include <stdio.h>
- #include <stdbool.h>
- int main(int argc, char** argv)
- {
- int pid = fork();
- if (!pid)
- {
- sleep(5); // or maybe 5000
- while (true)
- {
- printf("hello fucktards!\n");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement