Connect Me

twitterfacebookgoogle plus email

  Instagram View Biwas Bhattarai's profile on LinkedIn

C Program to display Multiplication Table

/* WAP to display multiplication table of user entered number upto 10 times */

#include<stdio.h>
#include<conio.h>

void main()
{
int n, i, b=0;
clrscr();
printf("Please enter a number\n");
scanf("%d",&n);
for(i=1;i<=10;i++)
{
b=n*i;
printf("%d * %d = %d\n",n,i,b);
}
getch();
}

Watch video Tutorial of this program on Youtube CLICK HERE

Ą
https://www.flickr.com/photos/spklg/15211044551/