{}
CODE VISUALIZER
Learn DSA the way it should be — with step-by-step code visualization.
Try now!
CODE VISUALIZER
Learn DSA with step-by-step code visualization.
Try now!
run-icon
main.c
#include <stdio.h> int main() { int i = 0; while (i < 5) { printf("Текущий индекс: %d\n", i); i++; } return 0; }
Output