Linux操作系统实验系列之实验一 LINUX下C编程

一、实验目的
了解LINUX下C编程环境

二、实验内容:
编写一段程序,当此程序运行时,在屏幕上显示”hello world!”。

三、实验环境

Linux操作系统

四、实验过程与运行结果

源代码:
#include<stdio.h>
int main()
{printf(“hello!\n”);
}
结果图:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_43372169/article/details/110520914
今日推荐