abh - HTMLify profile

abh's Profile Picture

abh

509 Files

102923 Views

Latest files of /abh/learning/c/BPPL/Phase-1/functions

calculator.c abh/learning/c/BPPL/Phase-1/functions/calculator.c
13 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;