当前位置:网站首页>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!
边栏推荐
- Daily question brushing record (IX)
- How can you choose to work in the county after graduation?
- 【JVM】一文带你了解JVM中的垃圾回收机制(GC)——内含图解
- 数据分析新动力——国内首款开源一体化实时HTAP数据库石原子StoneDB发布
- Substrate 跨链技术源码级探索: XCVM的概览
- Bridge emqx cloud data to AWS IOT through the public network
- Required plug-ins for idea
- Exercise book of introduction to database system
- [C language] explain threads - start two threads
- 3D图表有效提升数据大屏档次
猜你喜欢
随机推荐
【Proteus仿真】Arduino UNO利用74LS148扩展中断
More than 20million videos have been played in the business list! Why is the reform of Agricultural Academies urged repeatedly?
MySQL8 NDB Cluster安装部署
【OpenCV 例程200篇】215. 基于多段线绘制近似椭圆
canvas云朵形状动画
坚果云-在新电脑上同步移动硬盘的文件
nichenet实战silicosis
How can you choose to work in the county after graduation?
Dart: string replace related methods
期未课程设计:基于SSM的产品销售管理系统
解决方法:STM32使用cJSON解析数据失败
A scheduled task deletes data at a specified time
[demo] write file circularly
基于51单片机的计件器设计
Parker variable displacement piston pump pv092r1k1t1nmmc
Substrate 跨链技术源码级探索: XCVM的概览
Ningx 1.20.2
Consolidate entry-C basic variables and constants
canvas鼠标控制重力js特效
3D图表有效提升数据大屏档次









