#include float mult( int a, float b ) { return a * b; } int main( void ) { int x = 3; float y = mult( x, 4.5 ); /* function call */ cout << "y = " << y << endl; }