write a program to print the multiplication table of any number using any concept?
Answers
Answered by
5
✨YOUR ANSWER✨
#include<stdio.h>
int main()
{
printf("\n\n\t\tStudytonight - Best place to learn\n\n\n");
int n,i;
printf("Enter an integer you need to print the table of: ");
scanf("%d", &n);
printf("\n\n\n");
for(i = 1; i <= 10; i++)
{
printf("\n\t\t\t%d * %d = %d \n", n, i, n*i);
}
printf("\n\n\n\n\t\t\tCoding is Fun !\n\n\n");
return 0;
}
IF YOU WANT OUTPUT OF THIS THEN YOU CAN REFER BELOW...
MARK ME AS BRAINLIEST IF IT HELPS YOU
Attachments:
Answered by
1
Answer:
Your answer is in the attachment.
Attachments:
Similar questions
Science,
3 months ago
Math,
3 months ago
Math,
3 months ago
Computer Science,
6 months ago
English,
1 year ago