Skip to content

Commit

Permalink
adding a txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruv committed Nov 18, 2022
1 parent 980c573 commit e9e5f9c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions table.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#include <stdio.h>

int main()
{
int n,i,t;
printf("enter the no.=");
scanf("%d",&n);
for(i=1;i<=10;i++){
t=n*i;
printf("%d\n",t);
}


return 0;
}

0 comments on commit e9e5f9c

Please sign in to comment.