• Its time to see c program to print multiplication table using while loop or for loop.
  • Its is very easy to print multiplication table using c program
  • We need one for loop which iterates from 1 to 10
  • Inside for loop just multiply numbers and print result in each iteration.
  • Lets us see an example C program on how to print multiplication table using for loop.
  • multiplication table program in c using for loop
  • write a c program to input a number from user and print multiplication table of the given number using for loop. how to print multiplication table of a given number in c programming.


Program #1 : Write a c program to print multiplication table using for loop.Take input from user.

  1. #include <stdio.h>
  2. int main()
  3. {
  4.    int n, i;
  5.  
  6.     printf("Enter a Number ");
  7.     scanf("%d",&n);
  8.  
  9.     for(i=1; i<=10; ++i)
  10.     {
  11.         printf("%d * %d = %d \n", n, i, n*i);
  12.     }
  13.      
  14.     getch();
  15.     
  16. }
  
Output:


multiplication table in c program

Program #2: Write a c program to print multiplication table using while loop
write a c program to print multiplication table of any number using for loop


  1. #include <stdio.h>
  2. int main()
  3. {
  4.    int n, i;
  5.  
  6.     printf("Enter a Number ");
  7.     scanf("%d",&n);
  8.     i=1;
  9.     while(i<=10){
  10.                 
  11.         printf("%d * %d = %d \n", n, i, n*i);
  12.         ++i;
  13.     }
  14.      
  15.     getch();
  16.     
  17. }
  
Output:

  1. Enter a Number 
  2. 2
  3. 2 * 1 = 2
  4. 2 * 2 = 4
  5. 2 * 3 = 6
  6. 2 * 4 = 8
  7. 2 * 5 = 10
  8. 2 * 6 = 12
  9. 2 * 7 = 14
  10. 2 * 8 = 16
  11. 2 * 9 = 18
  12. 2 * 10 = 20
     
You Might Like:

  1. Write a c program to generate fibonacci series without recursion  
  2. Write a c program to generate fibonacci series using recursion
  3. Matrix multiplication in c program with explanation
  4. Factorial program in c without recursion
  5. C program to check number is armstrong number or not
  6. Check Armstrong number in c using recursive function  
  7. C program for even or odd using for loop 
  8. C program to check odd or even without using modulus operator and division operator
  9. Prime number program in c using for loop and while loop 
  10. C program to print prime numbers from 1 to n
  11. C program to print multiplication table using while loop and for loop
  12. C program to convert binary to decimal using for loop 
  13. C program to reverse a number using while loop and for loop
  14. C program to find sum of n numbers using for loop 
  15. C program to find leap year using if else  
  16. c program to check leap year using conditional operator  
  17. C program to print patterns of numbers,alphabets and stars in a pyramid shape
  18. C program to swap two numbers without using third variable and using functions 
  19. C Program to swap two numbers without using third variable 
  20. Write a C program to swap two integer arrays  
  21. C program for swapping of two strings  
  22. C program to print given number in words 
  23. C program to print 1 to 100 without using loop
  24. C program to find ASCII value of a string  
  25. Convert string to integer c programming  
  26. C program to display characters from a to z using loop 
  27. C programming power function example program 
  28. C program for addition subtraction multiplication and division using switch case  
  29. C program to delete an element in an array
  30. C program to insert an element in an array
  31. Switch case in c example program
  32. Prime number program in c using for loop
  33. Fibonacci series in c without recursion

Instance Of Java

We will help you in learning.Please leave your comments and suggestions in comment section. if you any doubts please use search box provided right side. Search there for answers thank you.
«
Next
Newer Post
»
Previous
Older Post

3 comments for C program to print multiplication table using while loop and for loop

Select Menu