中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助

使用GCC for openEuler

编译运行C程序

(这里以hello.c为例)

hello.c代码

1
2
3
4
5
6
#include <stdio.h>
int main()
{
    printf("Hello, World!\n");
    return 0;
}
1
2
gcc hello.c -o hello.out
./hello.out

编译运行Fortran程序

(这里以hello.f90为例)

hello.f90代码

1
2
3
4
Program main
    Implicit none
    write(*,*) "Hello World!"
    End program main
1
2
gfortran hello.f90 -o hello.out
./hello.out

GCC for openEuler基于开源GCC,其命令gcc、g++、gfortran等的使用方式与GCC相同。