Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hacktoberfest2022 #57

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add files via upload
Myselfnk1 authored Oct 16, 2022
commit 0277a163ff9d26af50d5e311273a5ccd394dadf7
21 changes: 21 additions & 0 deletions ck.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@


#include<stdio.h>

int main ()
{
int a;
printf ("Enter number for which you want table = ");
scanf ("%d",&a);
printf (" %d x 1 = %d\n",a, a*1);
printf (" %d x 2 = %d\n",a, a*2);
printf (" %d x 3 = %d\n",a, a*3);
printf (" %d x 4 = %d\n",a, a*4);
printf (" %d x 5 = %d\n",a, a*5);
printf (" %d x 6 = %d\n",a, a*6);
printf (" %d x 7 = %d\n",a, a*7);
printf (" %d x 8 = %d\n",a, a*8);
printf (" %d x 9 = %d\n",a, a*9);
printf (" %d x 10 = %d\n",a, a*10);
return 0;
}