#include main() { int z; z = sum( 75, 25); printf( "Sum is %d", z); } int sum( int p1, int p2) { int tmp ; tmp = p1 + p2 ; return tmp; }