Computer Science, asked by shambhushasmal756, 2 months ago

# Write a program to display the multiplication table of 5.​

Answers

Answered by Braɪnlyємρєяσя
2

Explanation:

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