Computer Science, asked by Jiss7, 6 months ago

write a program to print the multiplication table of any number using any concept?​

Answers

Answered by Anonymous
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 sneha413639
1

Answer:

Your answer is in the attachment.

Attachments:
Similar questions