home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / miscprog / soundf / source.cod < prev    next >
C/C++ Source or Header  |  1991-04-21  |  254b  |  22 lines

  1. #include <stdio.h>
  2.  
  3. int main(int argc, char *argv[])
  4. {
  5. int a,b,c,d,e;
  6.  
  7. d=argc-1;
  8. e=atoi(argv[1]);
  9.  
  10. for(a=2;a<=d;a++)
  11.  {
  12.  b=atoi(argv[a]);
  13.  b=b * 100;
  14.  sound(b);
  15.  delay(e);
  16.  nosound();
  17.  if(kbhit()) c=getch();
  18.  if(c==27) exit();
  19.  }
  20.  
  21. }
  22.