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