Linux執行C語言檔案

2020-08-12 11:39:12

安裝gcc工具

sudo apt install gcc


建立檔案

vim **.c


完成後編譯

gcc **.c -o **.out


執行程式

./**.out