当前位置:网站首页>Write the simplest small program in C language Hello World
Write the simplest small program in C language Hello World
2022-06-30 17:18:00 【fen_ fen】
1、 To write demo.c Program
#include<stdio.h>
int main()
{
printf("Hello world!");
return 0;
} 
2、 Compile to executable
$gcc demo.c -o demo

3、 perform
[[email protected] testhu]# ./demo
Hello world!
边栏推荐
- HMS core audio editing service 3D audio technology helps create an immersive auditory feast
- Sub chain cross technology source level exploration: an overview of xcvm
- Data mining knowledge points sorting (final review version)
- Property or method “approval1“ is not defined on the instance but referenced during render
- 商单视频播放超2000万!农院改造为何屡被催更?
- 【JVM】类加载相关面试题——类加载过程、双亲委派模型
- [demo] write file circularly
- Data security compliance has brought new problems to the risk control team
- redis淘汰策略
- 阿里云盘分享压缩包
猜你喜欢
随机推荐
[200 opencv routines] 215 Drawing approximate ellipse based on polyline
Differential analysis between different groups nichenet for silicosis runs successfully!
Servlet运行原理_API详解_请求响应构造进阶之路(Servlet_2)
网络:服务器网卡组技术原理与实践
addmodule_allmerge_ams_im
泰山OFFICE技术讲座:同一行不同字号的字如何对齐绘制
Geo read single cell CSV expression matrix single cell column name change Seurat
【JVM】一文带你了解JVM中的垃圾回收机制(GC)——内含图解
Exch:修复丢失的系统邮箱
【C语言】详解线程 — 开启两个线程
Rexroth hydraulic control check valve z2s10-1-3x/
[proteus simulation] Arduino uno uses 74ls148 to extend interrupt
开发那些事儿:Linux系统中如何安装离线版本MySQL?
Alibaba cloud disk sharing compressed package
If your MES is not upgraded, it will be eliminated
Exercise book of introduction to database system
JSR303以及常见Validator实现
数据库系统概论习题册
[C language] detailed explanation of threads - multi threads for collaborative operation
[Demo] 循环写文件









