\* C Program to multiply two floating point numbers *\
# include < stdio.h >
int main( )
{
float a, b, mul ;
printf(" Enter the First Float Number : ") ;
scanf("%f ", & a) ;
printf("\n Enter the Second Float Number : ") ;
scanf("%f ", & b) ;
sum = a * b ;
printf("\n Multiplicaiton of two Number : %f ",mul) ;
return ( 0 ) ;
}