HTMLify
Log in
Register
Dashboard
Temp Share
Shortlinks
Frames
API
Log in
Register
Dashboard
Temp Share
Shortlinks
Frames
API
abh - HTMLify profile
abh
523 Files
134644 Views
Latest files of /abh/learning/c/BPPL/Phase-1/functions
calculator.c
abh/learning/c/BPPL/Phase-1/functions/calculator.c
54 Views
0 Comments
#include <stdio.h>
typedef struct {
int (*add)(int, int);
int (*sub)(int, int);
int (*div)(int, int);
int (*mul)(int, int);
} Calculator;