{}
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 sum3(int a, int b, int c) { return a + b + c; } int main() { printf("%d", sum3(12, 24, 36)); }
Output