C 筆記 《C語言深度剖析》第七章 檔案結構

2021-07-07 01:44:16 字數 904 閱讀 8587

本文為個人讀書筆記,僅供記錄學習過程中遇到的日後需要留意的問題,如有相關版權問題請及時通知作者。

檔案內容的一般規則

1、每個標頭檔案和原始檔的頭部必須包含檔案頭部說明和修改記錄。

2、各個原始檔必須有乙個標頭檔案說明,標頭檔案各部分書寫順序如下

no.item

1header file header section

2multi-include_prevent section

3debug switch section

4include file section

5macro define

6structure define section

7prototype declare section

multi-include-prevent section用來防止標頭檔案被重複包含

原始檔各部分的書寫順序如下

noitem

1source file header section

2debug switch section

3include file section

4macro define section

5structure define section

6prototype declare section

7global variable declare section

8file static variable define section

9function define section

檔名命名的規則

5、檔案識別符號分為兩部分,即檔名字首和字尾。檔名字首的最前面要使用范文限定符——模組名(檔名)的縮寫;

6、採用小寫字母命名檔案,避免使用一些比較通俗的檔名。

C語言 第七章

一 在計算機中,位 bit 是表示和儲存資訊的最小單位,1b 8bit。c 語言提供一種在位一級進行操作的機制。它允許在乙個結構體中以位為單位來指定其成員所佔記憶體的長度,這種以位為單位的成員稱為 位段 或 位域 例如 struct a unsigned aa 1 unsigned bb 1 uns...

C語言基礎 C語言第七章

溫習 三種迴圈結構 while 條件表示式 迴圈體 dowhile 條件表示式 for 表示式1 表示式2 表示式3 表示式1 迴圈體 表示式3 第七章 陣列 一維陣列的定義與引用 之前講到的資料基本上都是屬於基本型別 整型 字元型 實型 的資料,c語言還提供了構造型別的資料,他們有陣列型別 結構體...

C語言第七章(7 1 7 4)

7.3 呼叫函式 7.3.2 函式呼叫時的資料傳遞 7.1 為什麼要用函式 7.3 呼叫函式 7.3.4 函式的返回值 7.4 對被呼叫函式的宣告和函式原型 執行結果 在這裡插入描述 how do you do include intmain void print star void print m...