要使用OutputDebugString打印字符串变量中的消息,可以按照以下步骤进行操作:
#include <Windows.h>
char msg[] = "Hello World!";
OutputDebugString(msg);
完整的示例代码如下:
#include <Windows.h>
int main()
{
char msg[] = "Hello World!";
OutputDebugString(msg);
return 0;
}
注意:OutputDebugString函数在调试模式下有效,在发布版本中不会产生任何输出。