분류 전체보기

보호되어 있는 글입니다.
보호되어 있는 글입니다.
간단하게 작성하겠다. #include #include #include #include void alarm_handler() { puts("TIME OUT"); exit(-1);}void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, alarm_handler); alarm(30);}int main(int argc, char *argv[]) { char buf[0x80]; initialize(); printf("buf = (%p)\n", buf); scanf("%141s", buf); return 0;}0x70 + ..
보호되어 있는 글입니다.
프레딕
'분류 전체보기' 카테고리의 글 목록 (2 Page)