회문이란? 거꾸로 읽어도 원래 읽은 것과 똑같은 단어 level, mom, eye 등 문제 : 단어를 입력받아 회문이면 1, 회문이 아니면 0을 출력함. (제한 : 단어 길이는 3~10) 코드 //SWEA1989 초심자의 회문검사 #include #include #include int check(char* w); int main(void){ int testCase, i, *answer; char word[11]; scanf("%d", &testCase); answer = (int*)malloc(sizeof(int)*testCase); for(i=0; i