在linux下helloworld的C程序

Posted 橙子好甜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在linux下helloworld的C程序相关的知识,希望对你有一定的参考价值。

多年没用linux上编辑c程序,忘记怎么生成了。刚刚试了一下

vim hello.c 在hello.c中 按下 i 或者 insert 输入以下内容

#include <stdio.h>  
#include <stdlib.h>  
 
int main(int argc, char **argv)  
{  
    printf("Hello world!\n");  

输入完成后按 esc 输入:wq保存并退出

再输入以下命令:

gcc -o hello hello.c
./hello
执行的结果为:
Hello world!







以上是关于在linux下helloworld的C程序的主要内容,如果未能解决你的问题,请参考以下文章

[Linux]初学者如何在Linux环境下配置gcc编程环境,并编写第一个C程序HelloWorld

《Linux C编程一站式学习》——第一个程序HelloWorld.c

Android.mk编译Helloworld

Android.mk编译Helloworld

itop4412开发板添加开机启动程序

Linux下如何运行C程序?