GCC编译多文件C项目

1 目录结构

root@dev-virtual-machine:/home/dev/code/c/multifile# ll
总用量 20
drwxr-xr-x 2 root root 4096 1111 17:07 ./
drwxrwxr-x 3 dev  dev  4096 1111 17:07 ../
-rw-r--r-- 1 root root   56 1111 16:42 c3.c
-rw-r--r-- 1 root root   63 1111 16:40 c3.h
-rw-r--r-- 1 root root  131 1111 16:44 main.c

2 文件详细

c3.h

#ifndef _C3_H_
#define _C3_H_

int add(int a, int b);

#endif 

c3.c

#include "c3.h"


int add(int a, int b){
     
	return a+b;
}

mian.c

#include 

#include "c3.h"


int main(void){
     
	int a=1; 
	int b=2;
	int c = add(a,b);
	printf("a+b=%d\n",c);

	return 0;
}

3 编译命令

编译+执行

root@dev-virtual-machine:/home/dev/code/c/multifile# gcc c3.c main.c -o a.out && ./a.out
a+b=3


仅编译

root@dev-virtual-machine:/home/dev/code/c/multifile# gcc c3.c main.c -o a.out
root@dev-virtual-machine:/home/dev/code/c/multifile# ls
a.out  c3.c  c3.h  main.c
root@dev-virtual-machine:/home/dev/code/c/multifile# ./a.out
a+b=3

你可能感兴趣的:(C/C++,c语言,开发语言,后端)