Program to print table of any number using while loop in C-language.

#include<stdio.h>
int main()
{
    int i=1,n;
    printf("Enter the number\n");
    scanf("%d",&n);
    printf("Table of %d is\n",n);
    while(i<=10)
    {
        printf("%d*%d=%d\n",n,i,n*i);
        i++;
     
    }
}

OUTPUT
Enter the number
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

Visit Homepage

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to cheque enter number is even or odd in c-language

Program to print the cube of a number in c-language

Creative Pattern of Rhino in C-language

Variable & Datatype for C-programming

Division of two numbers in C-language