write a program to input a number and print multiplication table for it
pls help
i will surely mark u as brainlest if u give me correct answers
Answers
Answered by
0
Explanation:
#include <stdio.h>
void main()
{
int j,n;
printf("Input the number (Table to be calculated) : ");
scanf("%d",&n);
printf("\n");
for(j=1;j<=10;j++)
{
printf("%d X %d = %d \n",n,j,n*j);
}
}
Similar questions