新手开始C语言开发~遇到了问题恳请老鸟帮忙解答~
我刚刚开始接触C语言开发看了网上了《C语言也能干大事》的视频
第一节,跟着编程,一模一样可是编译了一下就是出现了问题:
d:\c语言\1\test123\stdafx.h(15) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory
以下是我的程序,请老鸟们帮我解决一下吧!
// TEST123.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
MessageBox(NULL,TEXT("世界你好"),TEXT("问好"),MB_OK);
return 0;
}