Created
February 10, 2019 12:09
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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