문제 코드 및 분석 #include #include #include #include #include #include "flag.h" #define COUNT 16 #define ASSERT(cond) if(!(cond)) exit(100); int getint() { char buf[16] = {0}; ASSERT(read(0, buf, 15) >= 1); return atoi(buf); } typedef struct { char *buf; size_t size; } note; char* admin_ptr = NULL; int main() { setvbuf(stdout, NULL, _IONBF, 0); setvbuf(stdin, NULL, _IONBF, 0); note notes[COUNT] = {0};..