C语言学习11:typedef和define区别,头文件的使用以及 <>和“”区别,宏定义中#和##的用法,条件编译,gcc和c99中宏定义使用printf和sprintf,条件编译避免头文件包含 1,typedef和define区别#include <stdio.h> #define INT32 int #define COUNT 10 //typedef 是编译器关键字,和#define是完全不同的 //...