C Programming
Computer Programming

Program in c to multiply two floating point numbers



Program in c to multiply two floating point numbers

\* 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 ) ;

}

Output of Program:

Program in c to multiply two floating point numbers