Computer Science, asked by sarinsergiev, 7 months ago

Write a program to print the Multiplication table of inputted number.

Answers

Answered by ayut1234
1

Explanation:

C Code: #include <stdio.h> void main() { int j,n; printf("Input the number (Table to be calculated) : "); scanf("%d",&n); printf("\n"); for(j=1;j<=10;j++) { printf("%d X %d = %d \n",n,j,n*j); } }

Similar questions