Submission #722

# Submission time Handle Problem Language Result Execution time Memory
722 2013-03-01T11:17:02 Z jyuno426 최댓값 (tutorial2) C++
Compilation error
0 ms 0 KB
int GetMax(int N, *A)
{
  int max = A[0];
  for(int i = 1; i < N; i++)
    if(max < A[i]) max = A[i];
  
  return max;
}

Compilation message

tutorial2.cpp:1:19: error: expected identifier before '*' token