1.在终端切换目录至桌面,输入命令:
touch 1-1.c //创建1-1.c文件
2.编辑器打开1-1.c,或gedit 1-1.c 编写代码
#include<stdio.h>
int main()
{
printf("hello world");
return 0;
}
3.编译代码
gcc -o 1-1 1-1.c
4.运行代码
./1.1
1.在终端切换目录至桌面,输入命令:
touch 1-1.c //创建1-1.c文件
2.编辑器打开1-1.c,或gedit 1-1.c 编写代码
#include<stdio.h>
int main()
{
printf("hello world");
return 0;
}
3.编译代码
gcc -o 1-1 1-1.c
4.运行代码
./1.1