November 23, 2024

C program to find multiplication table of a given number using for loop

#include<stdio.h>
int main()
{
int num,i;
printf("enter a number");
scanf("%d",&num);
for(i=1;i<=10;i++)
{
printf("%d%d = %d\n",num,i,numi);
}
return 0;
}

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

Leave a Reply

Your email address will not be published. Required fields are marked *