Prog#007: Product of two real numbers

/* 
Program#7
Product of two real numbers
*/

#include <stdio.h> 
main(){
float a,b,c;
printf("\nEnter values for A and B :");
scanf("%f %f",&a,&b); 
c=a*b;
printf("A*B is : %f\n",c);
}