免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2164 | 回复: 1
打印 上一主题 下一主题

我的linux C开发环境(个人PC上,非服务器方式) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-06-06 08:56 |只看该作者 |倒序浏览



(一)Linux C 开发环境构成
编辑器:              VI
编译器:              gcc(full name:GNU c/c++)
调试器:              gdb
函数集:              glibc
系统头文件:          glibc_header
(二)需要的软件和开发包
terminal                       //终端
gcc                            //编译器
cpp
libgcc

libc6                          //库 标准库 数学函数 在libc.so.6目录下
binutils                       //连接工具
       /usr/bin/size
       /usr/bin/ar
      /usr/bin/objdump
       /usr/bin/strings
      /usr/bin/as
      /usr/bin/ld

locals                          //提供本地支持
libc6-dev                       //c共享库 头文件
glibc-doc                       //文档
glibc-doc-reference             //参考手册
manpages-dev                    //man 函数用法
make                            //维护源代码
make-doc
gdb
                             //调试程序
vim                             //编辑器
indent                          //格式化源代码
(三)Linux C 下的后缀的意义
.c     C源码
.h     头文件
.i      已经预处理的C文件
.o     目标文件
.s     汇编语言的源文件

gcc的使用
gcc c源 :直接产生可执行文件
所以通常加-o
gcc -o hello hello.c
说明可执行文件名为hello
执行文件: ./hello
(四)简单的hello world代码编写执行过程演示:

用vi编辑代码
root@xuanfei-desktop:~/cpropram# vi hello.c用indent格式化代码
root@xuanfei-desktop:~/cpropram# indent -kr hello.c查看代码内容
root@xuanfei-desktop:~/cpropram# cat hello.c
#include
int main(int argc, char **agv)
{
    printf("hello world\n");
    return 0;
}

查看原目录下有多少文件
root@xuanfei-desktop:~/cpropram# ls
hello.c txt
编译hello.c文件
root@xuanfei-desktop:~/cpropram# gcc -Wall hello.c
再次查看
root@xuanfei-desktop:~/cpropram# ls
hello.c hello.c~ a.out txt运行编译后生成的二进制可执行文件
root@xuanfei-desktop:~/cpropram# ./a.out
结果
hello world
(五)int main(int argc,char *argv[]) 是lnux下c编程的标准写法,argc 是外部命令参数的个数,argv[] 存放各参数的内容,下面我们看下argc argv的用法
实例演示一、
查看代码:
root@xuanfei-desktop:~/cpropram# cat 1.c
#include
int main(int argc, char **argv)
{
    printf("hello\n");
    if (argc
运行:
root@xuanfei-desktop:~/cpropram/1# ./a.out xuan fei结果:
hello
argc=3 argv[0]=./a.out argv[1]=xuan

argc的值是 3,代表参数的总数,分别为:“./a.out” “xuan” “fei”
argv[0]是"./a.out"
argv[1]是"xuan"

实例演示二、
查看代码
root@xuanfei-desktop:~/cpropram# cat argc.c
#include
int main(int argc, char **argv)
{
    int i;
    for (i = 0; i
运行:
root@xuanfei-desktop:~/cpropram# ./a.out my name is xuanfei结果:
argv [0] is ./a.out
argv [1] is my
argv [2] is name
argv [3] is is
argv [4] is xuanfei

这样就可以清楚得看到argv 的内容。


[转]http://hi.baidu.com/malpin/blog/item/6e106e1133245f15b8127b02.html


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/70885/showart_727973.html

论坛徽章:
0
2 [报告]
发表于 2012-04-24 20:27 |只看该作者
mark:wink:
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP