字符模型和Windows等价程序

二者很明显的区别,dos和gui

字符模式模型

字符模型和Windows等价程序

#include "stdafx.h"

int _tmain(int argc, _TCHAR* argv[])
{  
 printf("Hello World!");
 getchar();
 return 0;
}

windows等价程序

#include <Windows.h>

字符模型和Windows等价程序

int WINAPI WinMain( __in HINSTANCE hInstance, __in_opt HINSTANCE hPrevInstance, __in_opt LPSTR lpCmdLine, __in int nShowCmd )
{
 MessageBox(NULL,"Hello World!","HelloMsg",MB_OK);
 return 0;
}

上一篇:Git 常用命令速查表


下一篇:c#中常用的异常类型