This is the example of c-programming. You can edit and compile code in your own way on clicking button. If you have better solution or you found any error on code, then give us suggestion.
Full Code:
Code Explanation :
To understand this example, you should have the knowledge of the following C programming topics:
Let me explain in details:
In this program, the user is asked to enter two numbers which are stored in variables a and b respectively.
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;
At last, product
is printed using printf()
function.
printf("Product = %.2lf", product);
Here, We are using %.2f
to print output in 2 decimal places as 2.89.
Algorithm
Step 1: Start Step 2: Declare variables a, b and product. Step 3: Read values a and b. Step 4: Multiply a and b and assign the result to product. product = a * b Step 5: Display product Step 6: Stop
Flowchart

Our example mainly covers following topics in any programing
- Basic Programs
- Number Programs
- Array Programs
- Matrix Programs
- Pattern Programs
- String Programs
- Tree Programs
- Singly Linked List Programs
- Circular Linked List Programs
- Doubly Linked List Programs
Here we share programs on various topics such as array strings, series area & volume of geometric figures, mathematical calculation algorithms for sorting & searching and much more.Our goal is to provide you with the perfect solution to all the programming problems you may have encountered either during interviews or in class assignments. If you don’t find what you are looking for then please drop a line in the comment section of example page or you can request from account page so that we can get it added to the below collection of programs. Happy Learning!!
If you are confident with the above programs and are able to successfully understand and run them without any problems then it is time for you to take a step further and learn comprehensive programming principles using examples and flow diagrams. Here is the link: Programming tutorial lists .
If you find this example helpful, don't forget to share it with your friends. And stay updated with us by subscribing adzetech.
If you find any code error or grammetical error then you can suggest for example improvement on clicking below button.
Check out these related examples:
- C Program to Check Whether a Number is Positive or Negative
- C Program to Print an Integer (Entered by the User)
- C Program to Find Factorial of a Number
- Program to read the two numbers and display their sum, difference, product, and quotient
- C program to calculate sum of series [Complete list]
- C Program to Find Transpose of a Matrix
- C Program to convert user given year, month and day to days
- C Program to Find Factorial of a Number Using Recursion
- C Program to convert days to years, months and days
- C Program to Multiply Two Floating-Point Numbers
Leave comment