Home
About Us
Contact Us
Terms And Conditions
Privacy Policy
Disclaimer
Ticker
6/recent/ticker-posts
Home
C
C programming, Multiply two floating-point numbers.
C programming, Multiply two floating-point numbers.
Simplify Articles
February 01, 2025
#include <stdio.h>
int main() {
double a, b, product;
printf("Enter two numbers: ");
scanf("%lf %lf", &a, &b);
product = a * b;
printf("Product = %.2lf", product);
return 0;
}
Post a Comment
0 Comments
Night Mode
🌓 Toggle Night Mode
Labels
Business Communication II
8
Business Economics
12
Emerging Technologies & Apps
8
Human Behaviour & Organisation
7
Indian Constitution
10
Marketing Management
8
Media Literacy & Critical Thinking
9
0 Comments