Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // (c) Microsoft Corporation 1995
- # include <bluescreenofdeath.h>
- int main()
- {
- int fun1()
- {
- fun3();
- }
- int fun2()
- {
- return 0;
- }
- int fun3()
- {
- if(rand(1) == 1)
- {
- bluescreenofdeath();
- }
- else
- {
- sleep(1);
- fun1();
- }
- fun2();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement