{}
run-icon
main.c
#include <stdio.h> int main() { for (int i = 0; i < 5; i++) { printf("Текущая итерация: %d\n", i + 1); } return 0; }
Output