... float Avg(int a, int b) { return (a+b)/2.; } main() { ... int x, y; float sr; x=2; y=5; sr = Avg(x, 2*y+8); ... }