문제 문제파일 다운받기 이 폴더로 옮겨주기 코드 분석#include #include #include #include #include #define BUFSIZE 100#define FLAGSIZE 64void win(unsigned int arg1, unsigned int arg2) { char buf[FLAGSIZE]; FILE *f = fopen("flag.txt","r"); if (f == NULL) { printf("%s %s", "Please create 'flag.txt' in this directory with your", "own debugging flag.\n"); exit(0); } fgets(buf,FLAGSIZE,f); i..