Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
#include
void addNumbers(int a, int b) { printf("The sum is: %d\n", a + b); } void calculate(void (*callback)(int, int), int x, int y) { callback(x, y); } int main() { calculate(addNumbers, 5, 3); return 0; }
The sum is: 8