{}
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 mult(int a, int b) { return a * b; } int main(){ int a=5; int b=10; int c= mult(a,b); printf("The Value of c is %d",c); return 0; }
Output