在Ubuntu 8.10中配置的C,C++编程环境测试(4)

关于本机装的Anjuta
Anjuta 只不过是个写C,C++ 的IDE环境而已。配备库文件后,才可以写程序,包括在终端运行的程序(类似于DOS程序),和图形界面程序(类似于窗口程序)。

下面就用Anjuta写一个c,写一个c++
应用程序|编程|Anjuta IDE
新建工程,用向导生成一个C程序的框架,你在Visual C++一样,顿时生成许多文件,用IDE就是这样麻烦。
选择C标签页下的Generic
工程名用默认的foobar-sample
在optional下全部选择:无
生成目的地为:主文件夹:zhouxiongfei 之下新建一个文件夹:test

在Anjuta左边文件目录中,打开src文件夹,看到有个main.c,打开它,可以看到向导已经为我们生成了一个c程序:
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* main.c
* Copyright (C) 周雄飞 2008 <pack39@qq.com>
*
* main.c is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* main.c is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program.  If not, see <>.
*/

#include <stdio.h>
int main()
{
        printf("Hello world\n");
        return (0);
}

按shift+F11生成工程(对应于: 生成|生成工程)
按F3(对应于:run|执行程序(需要选择要运行是那个程序)就可以在终端运行了

在<a href=Ubuntu 8.10中配置的C,C++编程环境测试" src="https://www.linuxidc.com/upload/2008_12/081216141198491.png" width=550 border=0>


写C++方法与上面相同,只是要选择C++标签下的 Generic C++而已。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzyzxy.html