Skip to content

Instantly share code, notes, and snippets.

@md-jamal
Created February 10, 2019 12:09
#ifndef __ARITHMETIC_H
#define __ARITHMETIC_H
int add(int a, int b);
int sub(int a, int b);
int mul(int a, int b);
int divide(int a, int b);
int power(int a, int b);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment