linux C(hello world)
1.使用vi/vim进行编写代码并保存为hello_world.c.如下:
/* This is my first C program*/ #include <stdio.h> int main(){ printf("Hello World!\n"); return 0; }
2.使用gcc进行编译
gcc hello_world.c -o hello_world
3.像执行shell脚本一样执行
./hello_world
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。