{}
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 a = 10; { int b = 20; printf("b=%d\n", b); } // Здесь b более недоступна printf("a=%d\n", a); } // Здесь a более недоступна
Output