C語言(1)hello world案例,簡單講解

2021-10-16 17:26:02 字數 426 閱讀 5526

//匯入乙個檔案,stdio.h std是乙個標準庫,i input o output 輸入輸出庫 .h標頭檔案

//<>表示匯入系統檔案 ""表示匯入自定義檔案

#include/*

塊注釋多行注釋

注釋內容不參與*/

//兩個斜槓表示注釋,只能注釋一行

//乙個程式中只能有乙個main函式,()裡面可以表示函式的引數,裡面可以為空

int main()

中是函式體

//printf是stdio.h中提供的函式,表示在標準輸出裝置上列印字串

printf("hello world");

//return 如果出現在main函式中表示程式結束,如果出現在其他函式中表示函式結束

return 0;

}

Linux C程式設計 1 HelloWorld

一 控制台命令流 在控制台中輸入如下命令 mkdir learnc cd learnc vim hello.c gcc o hi.exe hello.c生成hi.exe檔案 執行此程式 hi.exe 輸出hello linux 代表當前目錄 hi.exe在當前目錄下。o 指定了編譯生成的程式名為 h...

C 學習記錄1 Hello World! 補充

傳入引數args的範圍控制 上一次通過設定傳入main中的引數列表來展示hello world,由於之前知道args陣列裡面有多少引數,所以我們可以在一條write語句中一一列出來。但是,如果一不小心多打了幾個,或是從args 1 開始,而不是args 0 則會出現錯誤。雖然編譯器會告知我們錯誤 如...

Qt學習例子1 HelloWorld

這個工程是在vs2008下建的 ifndef helloworld h define helloworld h include include ui helloworld.h class helloworld public qmainwindow endif helloworld h include...