Computer Science, asked by hrishikesh03, 3 months ago

write a program to accept a number from the user and print the table of that number​

Answers

Answered by amantomar7319
2

Answer:

I can't understand this

Answered by ItZzMissKhushi
1

Answer:

C Program to Find & Display Multiplication table

  • * C Program to Find & Display Multiplication table.
  • int number, i = 1;
  • printf(" Enter the Number:");
  • scanf("%d", &number);
  • printf("Multiplication table of %d:\n ", number);
  • printf("--------------------------\n");
  • while (i <= 10)
  • printf(" %d x %d = %d \n ", number, i, number * i);
Similar questions