{}
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 add(int first, int second) { return first + second; } int main() { int (*operation)(int, int); operation = &add; printf("%d\n", operation(2, 2)); // 4 return 0; }
Output