赞
踩
1、打开控制台:使用快捷键 Ctrl + Alt + T;
2、 安装vim:输入 sudo apt-get install vim;
3、 安装gcc:输入sudo apt-get install gcc 。
1、 新建文件名为hello.c的源文件:输入vim hello.c;
2、 键入i 进入insert模式(即编辑输入模式),写入如下代码:
- #include<stdio.h>
- int main(void)
- {
- printf("Hello, world!\n");
- return 0;
- }
3、 输入完成后,Esc 回到normal模式,键入:wq 保存退出vim。
在终端执行 gcc hello.c -o hello 或者gcc hello.c编译。
输入./hello 或者./a.out就看到结果:
Hello,world!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。