write c program to print two float type variable
Answers
Answered by
1
Explanation:
,
write c program to print two float type variablehhjj
Attachments:
Answered by
0
Answer:
printf("Enter two numbers: "); scanf("%lf %lf", &a, &b); Then, the product of a and b is evaluated and the result is stored in product . product = a * b; Finally, product is displayed on the screen using printf( ) .
Similar questions