#include int main( void ) { float cost; const float rate = 1.5; /* with ";" */ cost = rate * 8; printf( "Cost = %f, rate = %f \n", cost, rate ); }