#include#include #define VAL 40#ifdef VAL #undef VAL #endif#define VAL 50 int main () { clrscr(); printf( "\n Value = %d", VAL ); getch(); return 0; }
输出
Value = 50
本文共 282 字,大约阅读时间需要 1 分钟。
#include#include #define VAL 40#ifdef VAL #undef VAL #endif#define VAL 50 int main () { clrscr(); printf( "\n Value = %d", VAL ); getch(); return 0; }
输出
Value = 50
转载于:https://www.cnblogs.com/sea-stream/p/10237143.html