RTU MCA III Sem
Open Source Operating System Notes
Posted by Gauttam on November 24, 2011 at 11:25 PM
|
comments (1)
|
#include<stdio.h>
#include<dos.h>
#include<conio.h>
void main()
{
char x;
x=getch();
while(x!='X')
{
sound(x);
delay(10);
x=getch();
}
}