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 sayHello() { printf("Hello from the callback!\n"); } void runCallback(void (*callback)()) { printf("Before calling the callback...\n"); callback(); printf("After calling the callback.\n"); } int main() { runCallback(sayHello); return 0; }
Before calling the callback...
Hello from the callback!
After calling the callback.