실행 실패 (제출 코드 컴파일 에러)
Main.c:27:6: error: conflicting types for ‘remove’; have ‘void(node *, node *)’ 27 | void remove(node* head, node* remove) { | ^~~~~~ In file included from Main.c:2: /usr/include/stdio.h:152:12: note: previous declaration of ‘remove’ with type ‘int(const char *)’ 152 | extern int remove (const char *__filename) __THROW; | ^~~~~~ Main.c: In function ‘main’: Main.c:38:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 38 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ Main.c:40:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 40 | scanf("%d", &data); | ^~~~~~~~~~~~~~~~~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.