ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1197. Один в поле воин

Why the "for" stopped
Послано Lucas 5 янв 2017 07:04
'n' is the number of test cases and 'res' it's a function that print the number of positions that can go.

The problem is that it only reads one case, for example "a2", prints the result and ends the execution.

Why that happen?

void res(char p[2]);
int main () {
int i,n;
char pos[2];
scanf("%d", &n);
for(i=0; i<n; i++) {
    scanf("%s", &pos);
    res(pos);
}

Edited by author 05.01.2017 08:22
Re: Why the "for" stopped
Послано ToadMonster 5 янв 2017 11:34
You need at least 3 chars for pos - for ending zero char.
Probably it ruined n during first "scanf("%s", &pos);"