Блог пользователя PilotCoder

Автор PilotCoder, история, 3 года назад, По-английски

I finish this code, but the judger says I am out of bounds, can anyone tell me why or is there anyting wrong on other places? Thanks very much.

my submission

Begged for help.

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

You are passing the integer array c whose number of elements is 5 to the function check(int *a) that copies the first n items from a to temp. If n > 5, then out-of-bound error happens.