Skip to content

Commit 28d90d5

Browse files
committed
table
1 parent 0becf08 commit 28d90d5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

multiplication_table.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#include<stdio.h>
2+
int main(){
3+
int n;
4+
printf("ENTER THE NUMBER \n");
5+
scanf("%d", &n);
6+
7+
8+
9+
10+
int i;
11+
printf("YOUR TABLE OF %d:\n", n);
12+
for(i=1;i<=10;i++){
13+
14+
printf("%d X %d = %d\n", n,i,n*i);
15+
16+
17+
}
18+
return 0;
19+
}

0 commit comments

Comments
 (0)