Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <windows.h>
  4. #include <time.h>
  5.  
  6. int main()
  7. {
  8. int i, zarodek;
  9. zarodek = time(NULL);
  10. srand(zarodek);
  11. while(2==2)
  12. {
  13. Beep(200+rand()%1000,100);
  14. }
  15.  
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement