c program to print table of a given number using while loop


//C program to print table of a given number using while loop:-


                                                                            
#include<stdio.h>
#include<conio.h>
void main()
{
     int i=1,b,c;
     clrscr();
     printf("Enter Any Value : ");
     scanf("%d",&b);
     printf("Table of %d is :\n",b);
     while(i<=10)
            {
                    c=b*i;
                    printf("%d * %d = %d\n",b,i,c);
                    i++;
            }
                 getch();
}

================

OUTPUT:-

Enter Any Value : 5
Table of 5 is :                                                                
5 * 1 = 5                                                                       
5 * 2 = 10                                                                     
5 * 3 = 15                                                                     
5 * 4 = 20                                                                     
5 * 5 = 25                                                                     
5 * 6 = 30                                                                     
5 * 7 = 35                                                                      
5 * 8 = 40                                                                     
5 * 9 = 45                                                                     
5 * 10 = 50                                                                     
                      
================                                                      
   
c program to print table of a given number using while loop

Comments