Computer Science, asked by seemapatel1825, 2 months ago

write c program to print two float type variable​

Answers

Answered by ss9113216gmailcom
1

Explanation:

,

write c program to print two float type variablehhjj

Attachments:
Answered by namitamurmu94
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