If I write the following program, then there is no beep sound on running the code.
#include <stdio.h>
int main()
{
printf("\a");
return 0;
}
Can you tell me how to use \a for producing beep sound using C program ?
|
If I write the following program, then there is no beep sound on running the code.
Can you tell me how to use \a for producing beep sound using C program ? |
|||||||||||||||||
|
|
The only thing wrong (half wrong) with your program is To be 100% portable it should be And I'd print a
|
|||||||||||
|
|
I agree with @Steve Jessop. People will go to great lengths to keep their computers quiet. In Windows: As an alternative to "\a", you could use WinAPI's Beep command. If you are using Windows 7, this may not work as expected. |
||||
|
|
|
|||||
|