{}
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> void say_hello(); int main() { say_hello(); say_hello(); say_hello(); } void say_hello() { printf("Привет!\n"); }
Output