// filename: max3a.c #include "max.h" int main( ) { int x = 37; int y = 52; printf ("Max is %d\n", calcMax( x, y ) ); return 0; }