{}
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> #include <stdlib.h> int main() { int size = 12; int *arrPtr = (int*)calloc(size, size * sizeof(int)); for (int i = 0; i < size; i++) { printf("%d\n", arrPtr[i]); } return 0; }
Output