Linux operating system experiment series experiment one C programming under LINUX

1. The purpose of the experiment
Understand the C programming environment under LINUX

2. Experiment content:
Write a program, and when this program is running, it will display "hello world!" on the screen.

Three, the experimental environment

Linux operating system

Fourth, the experimental process and operating results

Source code:
#include<stdio.h>
int main()
{printf("hello!\n");
}
Result image:
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_43372169/article/details/110520914