{}
run-icon
main.c
#include <stdio.h> int main() { int i = 0; while (i < 5) { printf("Текущий индекс: %d\n", i); i++; } return 0; }
Output