누군가는 이 코드에 대해 이렇게 평했다. "It seems like a weird exercise that no one would ever do" 나는 대답했다. "Korea always has selected kind of weird" #include #define MAX_SIZE 10 int isWhat[MAX_SIZE]; int point = -1; int isEmpty() { if (point == -1) return 1; return 0; } int isFull() { if (point == 10) return 1; return 0; } void into(int num) { if (isFull() == 1) printf("Full"); else isWhat[++point] = num; } int..