Vim
vim hello.c(在当前目录下创建一个.c文件并进入编辑模式)
i (插入)
Esc (停止插入)
:wq!(保存并退出)
gcc -o hello hello.c(编译)
./hello(执行)
Gedit
gedit hello.c(编辑)
gcc -o hello hello.c(编译)
./hello(执行)
时间: 2024-12-15 11:01:21
Vim
vim hello.c(在当前目录下创建一个.c文件并进入编辑模式)
i (插入)
Esc (停止插入)
:wq!(保存并退出)
gcc -o hello hello.c(编译)
./hello(执行)
Gedit
gedit hello.c(编辑)
gcc -o hello hello.c(编译)
./hello(执行)