Multiplication Table
source code:-👇👇👇👇👇👇👇👇👇👇👇👇
#include <stdio.h>
int main()
{
    int a, i;
    printf("Enter the Number due you want to multiplying:");
    scanf("%d", &a);
    for (i = 1; i <= 10; i++)
    {
       printf("%d x %d = %d\n",a,i,(a*i));
    }
    return 0;
}

 
 
 
0 Comments