write a program to display the multiplication table of any number entered bt the user
Answers
Answered by
2
Answer:
Pictorial Presentation:
Sample Solution:
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
History,
2 months ago
Math,
2 months ago
Social Sciences,
5 months ago
Computer Science,
5 months ago
CBSE BOARD XII,
10 months ago
CBSE BOARD XII,
10 months ago
CBSE BOARD XII,
10 months ago