C语言重复包含头文件 C语言避免重复包含实例 C语言预定义宏和预定义标识符 C语言重复包含头文件 // doubincl.c -- include header twice #include <stdio.h> #include "names.h" #include "names.h" // accidental second inclusion int main() { names winner = {"Less", "Ismoor"}; printf("The winner is %s %s.\n", winner.first, winner.last); return 0; } C语言避免重复包含实例 C语言预定义宏和预定义标识符