// declare externally defined function // (this is not best practice - this declaration should be // in a header file) extern long math(long a); #include int main() { long h = math(3025); printf("%d\n", h); }