C語言關於標頭檔案的使用

顺心无忧發表於2024-04-29

截圖:

image

main.c

//
// Created by clou on 2024/4/29.
//

#include <stdio.h>
#include "main.h" //包含自己實現的標頭檔案

//定義全域性變數
int cnt;
int sum;

//定義函式
int func(int x, char y) {
    return 0;
}

//定義函式
int func2(int x, int y) {
    return x + y;
}

int main() {
    int result2 = func2(1, 2);
    printf("%f", result2 + PI);
    return 0;
}

main.h

//
// Created by clou on 2024/4/29.
//

#ifndef C_BASICS_PROJECT_MAIN_H
#define C_BASICS_PROJECT_MAIN_H

//宏定義
#define PI 3.14
//結構體定義
typedef struct student {
    char name[32];
    int age;
} Stu;
//全域性變數的宣告
extern int cnt; //注意這裡是宣告,而不是定義
int sum; //這裡也是宣告 編譯時編譯器會自動新增extern
//函式的宣告
int func(int x, char y);

int func2(int, int); //函式宣告時,形參只需要指定資料型別即可

#endif //C_BASICS_PROJECT_MAIN_H

相關文章