在ubuntu建立 儲存 執行c 檔案

2021-08-17 21:07:00 字數 559 閱讀 3542

自從上了 c++ 程式設計課後,我的三觀塌了,因為:

only your friends can touch your private, neither your parents nor your children.

開啟終端,輸入以下命令,建立乙個空的.cpp檔案:

~$ touch main.cpp
~$ gedit main.cpp
~$ g++ main.cpp
然後輸入以下命令執行程式:

~$ ./a.out
就能看到執行結果了

建立好main.cpp檔案後

在命令列中編譯檔案:

~$ g++ -o hello hello.cpp  //如果是.c檔案,則gcc -o hello hello.c,下一步執行命令跟下面一樣
執行:

~$ ./hello

C程式在Ubuntu下建立執行

1.準備工作 1.1 開啟控制台 使用快捷鍵 ctrl alt t 安裝vim 輸入 sudo apt get install vim 安裝gcc 輸入 sudo apt get install g 2.編寫hello.c源 2 新建檔名為hello.c的原始檔 輸入vim hello.c 鍵入i ...

oracle 建立儲存過程 在job 定時執行

一 建立儲存過程。create or replace procedure upd pickup weight is begin update hk delivercost detail deltdetl set deltdetl.pickup weight select nvl hkpictdetl...

在Ubuntu上執行helloworld c

1.配置環境 安裝vim sudo apt get install vim有的linux系統安裝時預設安裝vim,但功能不全,檢測是否安裝成功在命令列輸入 vi 安裝gcc sudo apt get install gcc注意輸入上述命令後會有操作許可權,提示輸入密碼,密碼在命令列不顯示,但是依然可...