一、Start
1、编译器安装
yum install gcc -y # c编译器 yum install gcc-c++ -y # c++编译器
2、第一个C程序
// 文件名:txl.c #include <stdio.h> // 标准输出输入 int main() { printf(“hello”); return 0; }
3、编译
gcc txl.c -o txl
-o:编译并输出一个可执行文件
原文地址:https://www.cnblogs.com/tangxuliang/p/9115454.html
时间: 2024-09-28 21:29:18