歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Linux下編譯運行C命令

#include<stdio.h>


int main() {
    int i;
scanf("%d",&i);
    printf("%d\n",i);

}

一個名為hello.c的文件

打開終端:ctrl+alt+t

輸入cd 所在文件夾

gcc -ohello hello.c回車

./hello 回車

到這裡就結束了。

Copyright © Linux教程網 All Rights Reserved