Calculator Documentation 1.1
A simple calculator program with basic operations.
 
Loading...
Searching...
No Matches
calculator.h
Go to the documentation of this file.
1#ifndef CALCULATOR_H_
2#define CALCULATOR_H_
3
10int add(int a, int b);
11
18int subtract(int a, int b);
19
20#endif
int subtract(int a, int b)
Subtracts two numbers.
Definition calculator.c:5
int add(int a, int b)
Adds two numbers.
Definition calculator.c:3