실행 실패 (제출 코드 컴파일 에러)
Main.c: In function ‘main’: Main.c:9:17: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char (*)[16]’ [-Wformat=] 9 | scanf("%s", &target[i]) | ~^ ~~~~~~~~~~ | | | | | char (*)[16] | char * Main.c:9:32: error: expected ‘;’ before ‘}’ token 9 | scanf("%s", &target[i]) | ^ | ; 10 | } | ~ Main.c:16:30: warning: comparison between pointer and integer 16 | if (target[i][j] != NULL) | ^~ Main.c:9:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%s", &target[i]) | ^~~~~~~~~~~~~~~~~~~~~~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.