Creating Multiplication Table
main()
{
int i,j;
clrscr();
for(i=1;i<=9;i++)
{
for(j=1;j<=9;j++)
{
printf("\t\b%d",i*j);
}
printf("\n");
}
getch();
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment