在C語言中使用OutputDebugString函數可以向調試器輸出一條調試信息。
首先,需要包含Windows.h頭文件。
然后,使用OutputDebugString函數可以輸出調試信息。函數原型如下:
void OutputDebugStringA(
LPCSTR lpOutputString
);
其中,lpOutputString是要輸出的字符串。
例如,輸出字符串"Hello World!"可以使用如下代碼:
#include <Windows.h>
int main() {
OutputDebugStringA("Hello World!");
return 0;
}
在調試器中,可以通過查看輸出窗口來查看輸出的調試信息。