✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
En exécutant le programme suivant, combien de fois la chaîne "hello" est-elle affichée ?
#include <stdio.h>
int main() {
for (int i = 1; i < 5;) {
printf("hello\n");
i++;
}
return 0;
}