Online C Compiler - online editor

EMBED

Sat Dec 07 2024 10:15:42 GMT+0000 (Coordinated Universal Time)

Saved by @Narendra


#include<stdio.h> void geet() { printf("hello geett is here"); } void swati(void(*ptr)()) { //printf("heelo geet from call back function"); ptr(); } int main() { swati(geet); }

https://www.onlinegdb.com/online_c_compiler