#include float calc( void ) { return 8.0 * 5.35; } int main( void ) { float res1 = calc(); float res2 = 7 + 5 * calc(); if ( calc() > 5 ) cout << "Larger\n"; cout << "res1 = " << res1 << ", res2 = " << res2 << endl; }