c_programming_language/c_modern_approach/Preprocessor/undef.c

10 lines
149 B
C

#include <stdio.h>
#define SIZE 100
int main(int argc, char *argv[]) {
int i;
i = 101;
#undef SIZE
if (i > SIZE) {
printf("Yey!\n");
}
}