- 论坛徽章:
- 0
|
(一)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 |
|