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
10
int
add
(
int
a,
int
b);
11
18
int
subtract
(
int
a,
int
b);
19
20
#endif
subtract
int subtract(int a, int b)
Subtracts two numbers.
Definition
calculator.c:5
add
int add(int a, int b)
Adds two numbers.
Definition
calculator.c:3
calculator.h
Generated by
1.13.2