Submission #17108

#TimeUsernameProblemLanguageResultExecution timeMemory
17108pscheol짝수 정렬 (tutorial3)C11
Compilation error
0 ms0 KiB
#include "grader.h" ?? sort_even(int N, int *A){ int i; ??for(i = 0; i < N; i++) { ????if(A[i] % 2 == 0) Report(A[i]); ??} }

Compilation message (stderr)

tutorial3.c:2:1: error: stray ‘\302’ in program
 ??
 ^
tutorial3.c:2:1: error: stray ‘\240’ in program
tutorial3.c:2:1: error: stray ‘\302’ in program
tutorial3.c:2:1: error: stray ‘\240’ in program
tutorial3.c:3:1: warning: return type defaults to ‘int’ [-Wreturn-type]
 sort_even(int N, int *A){
 ^
tutorial3.c: In function ‘sort_even’:
tutorial3.c:5:1: error: stray ‘\302’ in program
 ??for(i = 0; i < N; i++) {
 ^
tutorial3.c:5:1: error: stray ‘\240’ in program
tutorial3.c:5:1: error: stray ‘\302’ in program
tutorial3.c:5:1: error: stray ‘\240’ in program
tutorial3.c:6:1: error: stray ‘\302’ in program
 ????if(A[i] % 2 == 0) 
 ^
tutorial3.c:6:1: error: stray ‘\240’ in program
tutorial3.c:6:1: error: stray ‘\302’ in program
tutorial3.c:6:1: error: stray ‘\240’ in program
tutorial3.c:6:1: error: stray ‘\302’ in program
tutorial3.c:6:1: error: stray ‘\240’ in program
tutorial3.c:6:1: error: stray ‘\302’ in program
tutorial3.c:6:1: error: stray ‘\240’ in program
tutorial3.c:8:1: error: stray ‘\302’ in program
 ??}
 ^
tutorial3.c:8:1: error: stray ‘\240’ in program
tutorial3.c:8:1: error: stray ‘\302’ in program
tutorial3.c:8:1: error: stray ‘\240’ in program
tutorial3.c:9:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^