#if...#endif 用法 财富值93

2016-09-26 07:27发布

#define DEBUG 1 #if DEBUG printf("Value of i : %d
",i); printf("Value of j : %d
",j); #endif

上面是一段源代码

在这个代码中#if.....#endif 起到的作用是什么,具体这个指令该怎么应用,用再那些情况中。