About Me

My photo
gandhinagar, gujarat, India
hi.. friends i'am student of kv crpf gandhinagar..and i would like to spread my view and thinking on computer..this blog is for not only those who wants to get knowledge.

Saturday 14 May 2011

printing a table in C language.....


#include
#include
void main()
{
int i,j,ans;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=10;j++)
{
      ans=i*j;
printf("%d*%d=%d",i,j,ans);
printf("\n");
}
printf("\n");
}
getch();
}

0 comments:

Post a Comment