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