✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
By running the following program, how many times is the string "hello" displayed?
#include <stdio.h>
int main() {
for (int i = 1; i < 5;) {
printf("hello\n");
i++;
}
return 0;
}