系统开发c语言技术参数,1 C语言 gcc 介绍 C 语言编译 main接受参数

本文介绍了C语言的基础知识,包括main函数、注释、变量声明和函数返回。讲解了gcc编译器的使用,如预编译、汇编、编译和链接过程,并展示了如何通过gcc命令行选项控制这些步骤。还探讨了printf函数的工作原理以及通过system调用执行系统命令。最后,提供了一个简单的C语言计算器程序示例,演示了如何接收命令行参数并进行计算。
摘要由CSDN通过智能技术生成

1 C语言 gcc 介绍 C 语言编译 main接受参数

发布时间:2020-07-19 20:18:28

来源:51CTO

阅读:1216

作者:990487026

1第一个c语言的hello world

1.1include头文件包含

头文件包含,写法#include,

1.2main函数

这个就是C语言程序的入口,所有的C程序都是从main开始执行,一个C的源程序必须有一个main函数,也只能有一个main函数

1.3注释

//注释一行

/* */代表块注释,可以注释多行代码

1.4{}括号和代码块

代表一个代码单元

1.5声明

C语言规定,所有的变量和函数必须先声明,然后才能使用.

1.6C语言自定义名字的要求

可以使用大小写字母,下划线,数字,但第一个字母必须是字母或者下划线

字母区分大小写

变量名最好用英文,而且要有所含义,通过变量的名称就能猜测变量的意思。

1.7return语句

在C语言当中任何函数遇到return代表这个函数停止,当main函数遇到return,代表整个程序退出

return代表函数的返回值,如果返回类型是void,可以直接写return,而不需要返回任何值

2C语言的编译

2.1编译过程

81ec6e7ea0dc6f35b5d84b34e424232c.png

2.2gcc编译选项

-o代表指定输出文件名

-E代表预编译

预编译处理include的本质就是简单的将include中的文件替换到c文件中

如果include包含的头文件在系统目录下,那么就用#include <>,如果包含的文件在当前目录下,那么用#inlclude“”

-S代表汇编

-c代表编译

Linux C学习

1,编写一个helloworld程序vim  hello.c

#include "stdio.h"

int main(){

printf("Hello World!\n\n");

return 0;

}

一步到位编译执行chunli@pc0003:/tmp/C$ gcc helloworld.C

chunli@pc0003:/tmp/C$ ./a.out

Hello World!

C编译过程chunli@pc0003:/tmp/C$ gcc --help

Usage: gcc [options] file...

Options:

-pass-exit-codes         Exit withhighest error code from a phase

--help                   Display this information

--target-help            Display target specific commandline options

--help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...]

Display specific types of command line options

(Use '-v --help' todisplay command line options of sub-processes)

--version                Display compiler version information

-dumpspecs               Display all of the built in specstrings

-dumpversion             Display the version of thecompiler

-dumpmachine             Display the compiler's targetprocessor

-print-search-dirs       Display the directories in thecompiler's search path

-print-libgcc-file-name  Displaythe name of the compiler's companion library

-print-file-name=  Display the full path to library 

-print-prog-name= Display the full path to compiler component 

-print-multiarch         Displaythe target's normalized GNU triplet, used as

a component in the library path

-print-multi-directory   Displaythe root directory for versions of libgcc

-print-multi-lib         Display the mapping between commandline options and

multiple library search directories

-print-multi-os-directory Display the relative path to OS libraries

-print-sysroot           Display the target librariesdirectory

-print-sysroot-headers-suffix Display the sysroot suffix used to findheaders

-Wa,           Pass comma-separated  on to the assembler

-Wp,           Pass comma-separated  on to the preprocessor

-Wl,           Pass comma-separated  on to the linker

-Xassembler        Pass  on tothe assembler

-Xpreprocessor     Pass  on tothe preprocessor

-Xlinker           Pass  onto the linker

-save-temps              Do not delete intermediate files

-save-temps=        Donot delete intermediate files

-no-canonical-prefixes   Do notcanonicalize paths when building relative

prefixes to other gcc components

-pipe                    Use pipes rather thanintermediate files

-time                    Time the execution of eachsubprocess

-specs=           Override built-in specs with the contents of 

-std=         Assume that the input sources are for 

--sysroot=    Use as the root directory for headers

and libraries

-B           Add to the compiler's search paths

-v                       Display the programsinvoked by the compiler

-###                     Like -v but options quotedand commands not executed

-E                       Preprocess only; do notcompile, assemble or link

-S                       Compile only; do notassemble or link

-c                       Compile and assemble,but do not link

-o                 Place the output into

-pie                     Create a positionindependent executable

-shared                  Create a shared library

-x             Specify the language of thefollowing input files

Permissible languages include: c c++ assembler none

'none' means revert to the default behavior of

guessing the language based on the file's extension

Options starting with -g, -f, -m, -O, -W, or --param areautomatically

passed on to thevarious sub-processes invoked by gcc.  Inorder to pass

other options on tothese processes the -W options must be used.

For bug reporting instructions, please see:

.

源C代码程序hello.c

第一步:预编译,把include文件的内容原封不动的放到源代码中gcc -o hello.i  hello.c

第二步:汇编,把预编译的结果变成汇编代码

第三步:编译,把汇编的结果变成二进制文件

第四步:链接,把编译的二进制文件与系统库连接起来chunli@pc0003:/tmp/C$ gcc -o hello.i -E hello.c

chunli@pc0003:/tmp/C$ gcc -o hello.s -S hello.c

chunli@pc0003:/tmp/C$ gcc -o hello.o -c hello.s

chunli@pc0003:/tmp/C$ gcc -o hello      hello.o

chunli@pc0003:/tmp/C$ ./hello

Hello World!

查看链接的库chunli@pc0003:/tmp/C$ ldd hello

linux-vdso.so.1=>  (0x00007fff217f8000)

libc.so.6 =>/lib/x86_64-linux-gnu/libc.so.6 (0x00007f5340914000)

/lib64/ld-linux-x86-64.so.2(0x00005654d9706000)

调用系统的程序vim hello.c

#include "stdio.h"

#include "stdlib.h"

int main(){

system("cat hello.c");

printf("Hello World!\n\n");

return 0;

}

编译gcc hello.c

执行./a.out

输出:#include "stdio.h"

#include "stdlib.h"

int main(){

system("cat hello.c");

printf("Hello World!\n\n");

return 0;

}

Hello World!

2.3printf执行原理

c629a49a4b1ae720749b6566e91594c7.png

向屏幕输出的其他方式:chunli@pc0003:/tmp/C$ cat my_printf.c

#include 

#include 

#include 

int main()

{

int i = 99;

printf("i=%d \n",i/0x10);

fwrite("abc\n",1,2,stdout);

//write("abc\n",4,STDOUT_FILENO,"abc");

return ;

}

C语言版计算器#include 

#include 

int main(int argc,char *args[])

{

if(argc <3 )

printf("请输入两个整数!\n");

else

{

int a = atoi(args[1]);

int b = atoi(args[2]);

int c = a+b;

printf("两个数的和是 %d \n",c);

}

return 0;

}

使用方法chunli@pc0003:/tmp/C$ !gcc

gcc calc.c

chunli@pc0003:/tmp/C$ ./a.out  3 3

两个数的和是 6

chunli@pc0003:/t

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值