LINUX.ORG.RU

История изменений

Исправление romeo250501, (текущая версия) :

fputs("Enter the data: ", stdout);
readData();
puts("Press c to update the data.");
while (true) {
   if (getchar() == 'c')
      readData();
   doSmth();
}

Исходная версия Deleted, :

fputs("Enter the data: ", stdout);[br]readData();[br]puts("Press c to update the data.");[br]while (true) {[br]   if (getchar() == 'c')[br]      readData();[br]   doSmth();[br]}