1.建工程
new->选择标签projects->在project name中填写你的工程名(例如myproject)->双击win32 console Application->选择一个空的工程->finish->ok
2.见文件
new->files->add to project选中在file 中输入文件名(注意:用C语言写文件明后要加.c例如文件名myfile.c,C++写就不需要直接就myfile或者myfile.cpp)->双击C++ SOurce file.
3.进入编辑界面()
C语言例子:
#include<stdio.h>//包含文件头
void main()
{
print("hello c\n");//输出hello c//\n换行
}
C++:
#include<iostream>//包含文件头
using namespace std;//命名空间
void main()
{
cout<<"hello c"<<endl;//输出hello c,//endl换行
}
4.运行
1.先编译
找到工具栏上有个感叹号样向左数3个图标,就是有个小蓝色向下的箭头点击下,看有没有错误。
2.链接
旁边两个箭头向下那个。
3.运行
没有错误就可以运行了——就是点下感叹号
4.就出现DOS界面了,上面显示hello c
//后为注释