一直都想在Eclipse下搭建一个C/C++的开发平台,却一直未能如愿。最近,终于成功了,其实很简单。
安装
设置环境变量
新建C项目
新建C++项目
来段HelloWorld
C的
C代码
#include ﹤stdio.h> #include ﹤stdlib.h> int main(void) { puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */ return EXIT_SUCCESS; } |
控制台编译输出
Console代码
**** Build of configuration Debug for project c **** **** Internal Builder is used for build **** gcc -O0 -g3 -Wall -c -fmessage-length=0 -osrc\c.o ..\src\c.c gcc -oc.exe src\c.o Build complete for project c Time consumed: 14011 ms. |
控制台结果输出
Console代码
!!!Hello World!!! |
C++的
C++代码
#include ﹤iostream> using namespace std; int main() { cout ﹤﹤ "!!!Hello World!!!" ﹤﹤ endl; // prints !!!Hello World!!! return 0; } |
控制台编译输出
Console代码
**** Build of configuration Debug for project cpp **** **** Internal Builder is used for build **** g++ -O0 -g3 -Wall -c -fmessage-length=0 -osrc\cpp.o ..\src\cpp.cpp g++ -ocpp.exe src\cpp.o Build complete for project cpp Time consumed: 25452 ms. |
控制台结果输出
Console代码
!!!Hello World!!! |
新闻标题:Eclipse下C/C++环境搭建
转载来于:http://www.shufengxianlan.com/qtweb/news17/350317.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联