Advertisement
babusha

Untitled

May 24th, 2011
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. // (c) Microsoft Corporation 1995
  2. # include <bluescreenofdeath.h>
  3. int main()
  4. {
  5. int fun1()
  6. {
  7. fun3();
  8. }
  9. int fun2()
  10. {
  11. return 0;
  12. }
  13. int fun3()
  14. {
  15. if(rand(1) == 1)
  16. {
  17. bluescreenofdeath();
  18. }
  19. else
  20. {
  21. sleep(1);
  22. fun1();
  23. }
  24. fun2();
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement