C语言及程序设计进阶例程-9 预处理之文件包含

贺老师教学链接  C语言及程序设计进阶 本课讲解


如何改造这个程序

#include <stdio.h>
typedef struct{
  int month;  int year;
}DATE;
int max(int x, int y);
#define area(a, b) (a)*(b)
double defaultPrice;
int main()
{
    defaultPrice=1000;
    printf("%d\n", area(2,4));
    ...
}
int max(int x, int y){
    return (x>y)?x:y;
}


源文件与头文件的分离
module.h
typedef struct{
  int month;  int year;
}DATE;
int max(int x, int y);
#define area(a, b) (a)*(b)
double defaultPrice;

module.c
#include <stdio.h>
#include "module.h"
int max(int x, int y){
    return (x>y)?x:y;
}
int main()
{
    defaultPrice=1000;
    printf("%d\n", area(2,4));
    return 0;
}


上一篇:新手超详细建站指南(阿里云让你少走弯路)


下一篇:自然语言处理的6大法宝