Program to print multipliaction table using exit control loop

Program:

#include<stdio.h>

#include<conio.h>


void main()

{

    int i=1, number;

    clrscr();

    printf("Enter a number: ");

    scanf("%d",&number);

    do{

        printf("%d * %d = %d\n",number,i,number*i);

        i++;

    }while(i<=10);

    getch();

}


Output:

Enter a number: 5

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


Comments

Popular posts from this blog

C program to read and display book information using structure

Count positive, negative and zero values in an array

Maximum value from array