1.workspace-project(win32 console application)(存在d盘)-files(C++__)-file(一定要有.c)
一定要有的格式:
int main()
{
return 0;
}
2.build-Ctrl+F7-F7-Ctrl+F5
3.
#include <stdio.h>
{
printf(" ");
return 0;
}
本文介绍了如何在Windows上创建一个简单的Win32控制台应用,步骤包括设置workspace、编写基本的`main()`函数,以及使用Ctrl+F7和F5进行编译和运行。重点展示了包括`#include <stdio.h>`在内的C++基础。
1.workspace-project(win32 console application)(存在d盘)-files(C++__)-file(一定要有.c)
一定要有的格式:
int main()
{
return 0;
}
2.build-Ctrl+F7-F7-Ctrl+F5
3.
#include <stdio.h>
{
printf(" ");
return 0;
}

被折叠的 条评论
为什么被折叠?