본문 바로가기

Code/C C++

[C/C++] Beep

 

#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);
}




'Code > C C++' 카테고리의 다른 글

[C/C++] Dialog Test Sample Project  (0) 2008.11.11
[C/C++] Dely  (0) 2008.11.09
[C/C++] Change Cursor Sample Project  (0) 2008.11.06
[C/C++] C++/CLI Command Line Compile Sample  (0) 2008.06.05
[C/C++] Hello World 샘플코드  (0) 2008.04.13