如何在linux系统下运行c源码呢,进行如下的操作:
1、编写代码,并且以.c问后缀:
2、代码如下:
#include <stdio.h>
int main(){
printf("hello world\n");
return 0;
}
3、编译 gcc -o hello hello.c
4、./hello
运行成功!!!
如何在linux系统下运行c源码呢,进行如下的操作:
1、编写代码,并且以.c问后缀:
2、代码如下:
#include <stdio.h>
int main(){
printf("hello world\n");
return 0;
}
3、编译 gcc -o hello hello.c
4、./hello
运行成功!!!
转载于:https://my.oschina.net/u/1780456/blog/789336