📜  如何在ubuntu中编译ac程序——C编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:37.799000             🧑  作者: Mango

代码示例1
//Compiling a C program
//gcc -o excecutable_filename filename.c
gcc -o hello hello.c

//Executing a C program
//./excecutable_filename
./hello