http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=649&sca=99&sfl=wr_hit&stx=1374 JUNGOL www.jungol.co.kr #include char A[205], B[205], add[205]; char* pB, * pS; int alen, blen, biglen, smalllen, bgidx; int strlen(const char* s, int len = 0) { while (s[len]) len++; return len; } int strcmp(const char* s, const char* t) { while (*s && *s == *t) s++, t++; return *s - *t; } void strcpy(char..