write a program to input a number and print table of the number using while loop
Answers
Answered by
4
Answer:
Program #1 : Write a c program to print multiplication table using while loop
int main()
{
int n, i;
printf("Enter a Number ");
scanf("%d",&n);
i=1;
while(i<=10){
printf("%d * %d = %d \n", n, i, n*i);
Answered by
0
Please Refer the Jpg for the answer.
Thankyou,
Hope it Helped you,
Attachments:
Similar questions