sound() Function Not Responding.

#include<stdio.h>
#include<dos.h>
#include<conio.h>
int main()
{ sound(1000);
delay(25000);
nosound();
getch();
return 0;
}

This code isn’t working. The error being displayed is this:

ld returned 1 exit status.

Please help!

1 Like

Read about sound functions Here and Hereand ** Here **. Hope this will help you!

1 Like