10 lines
149 B
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");
|
|
}
|
|
}
|