summaryrefslogtreecommitdiff
path: root/Project1/header.h
blob: a17227602d7848f9f80283f69376bc25dbb09232 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MY_HEADER_FILE_H
#define MY_HEADER_FILE_H

int returnInt();

int sum(int a, int b);

float percentage(int a, int b);

float FtoC(int fah);

float CtoF(int cel);

#endif MY_HEADER_FILE_H