首页 > 代码库 > gcc 编译和链接

gcc 编译和链接

1、现在对两个文件生成可执行文件

技术分享
//thanks.c#include <stdio.h>int main(void){    printf("Hello World\n");    thanks_2();}
View Code
技术分享
//thanks_2.c#include <stdio.h>int thanks_2(void){    printf("Hello World2\n");    return (1);}
View Code

2、步骤

一、cd 到文件所在目录

二、gcc -c 编译

三、gcc -o 链接

四、./xx  执行

技术分享

技术分享

gcc 编译和链接