Multiplication of 2 Numbers: C


In this video tutorial you can learn the procedure followed in C programming to multiply two numbers.

Related Read:

  1.    
  2. #include < stdio.h >  
  3.   
  4. int main()  
  5. {  
  6.     int a, b, c;  
  7.   
  8.     printf("Enter 2 numbers for multiplication\n");  
  9.     scanf("%d %d", &a, &b);  
  10.   
  11.     c = a * b;  
  12.   
  13.     printf("Multiplication of %d and %d is %d\n", a, b, c);  
  14.   
  15.     return 0;  
  16. }  

Output:
Enter 2 numbers for multiplication
25
5
Multiplication of 25 and 5 is 125

You can write same program without using third variable to calculate multiplication of 2 numbers, as below:

  1.    
  2. #include < stdio.h >  
  3.   
  4. int main()  
  5. {  
  6.     int a, b;  
  7.   
  8.     printf("Enter 2 numbers for multiplication\n");  
  9.     scanf("%d %d", &a, &b);  
  10.   
  11.     printf("Multiplication of %d and %d is %d\n", a, b, (a*b));  
  12.   
  13.     return 0;  
  14. }  

Output:
Enter 2 numbers for multiplication
25
5
Multiplication of 25 and 5 is 125

Note: Instead of int you can take float variables too. That would help in taking both integer as well as real values from the user as input.

Scanf(): For user input

In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program

Multiplication of Two Numbers: C Programming



YouTube Link: https://www.youtube.com/watch?v=AFbtnOAH7eE [Watch the Video In Full Screen.]


This video was produced as building block for our simple calculator application.

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

Leave a Reply

Your email address will not be published. Required fields are marked *