Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. #include<iostream>
  4.  
  5. #include<dos.h>
  6.  
  7. #include<conio.h>
  8.  
  9. #include<stdlib.h>
  10.  
  11. using namespace std;
  12. int main ()
  13. {
  14. int count=50;
  15. while(count--)
  16. {
  17. sound(90*random(10));
  18. delay(100);
  19. nosound();
  20. textattr(random("16")+'a'+BLINK);
  21. cprintf("KSHITIJ");
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement