学会思考
刻意练习

一,vs输出调试信息;使用:OutputDebugString()函数:
以下Demo使用如下:
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>


int main()
{

char chInput[512];
sprintf(chInput,"int:%d\n",500);
OutputDebugString(chInput);
system("pause");
return 0;
}

不要勾选安全开发生命周期选项;

posted on 2020-03-03 17:14  Worty  阅读(785)  评论(0编辑  收藏  举报