标签:使用 linux lin 警告 程序 目录 get 开始 apt
开始接触linux,将这篇博文作为使用GCC过程中学习笔记,碰到新的命令就往上添加。
1. 安装
gcc安装 sudo apt-get install build-essential 对于ubuntu或debian用户
2. 编译
编译hello.c 文件 gcc hello.c -Wall -o hello
-Wall 显示完整警告
-o 编译生成的文件名,如果没有默认为a.exe
-lm 链接数学math库
./hello 运行hello程序,hello要在当前目录下,.表示当前目录,/表示执行
标签:使用 linux lin 警告 程序 目录 get 开始 apt
原文地址:http://www.cnblogs.com/liuteng/p/6126468.html