Code/C C++
[C/C++] Beep
Hide Code
2008. 11. 9. 03:17
#include <tchar.h>
#include <windows.h>
int _tmain(int argc, TCHAR *argv[])
{
int frequency = _ttoi(argv[1]);
int duration = _ttoi(argv[2]);
Beep(frequency, duration);
}
#include <windows.h>
int _tmain(int argc, TCHAR *argv[])
{
int frequency = _ttoi(argv[1]);
int duration = _ttoi(argv[2]);
Beep(frequency, duration);
}