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 show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

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

Simple Hello world program in c- language