COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
gcd.h
Go to the documentation of this file.
1// gcd.h
2#ifndef GCD_H
3#define GCD_H
4
5int gcd(int a, int b);
6
7#endif
int gcd(int a, int b)
Definition 1.cpp:157