NBA - Boston Celtics

Sunday, 15 January 2012

find any table in it....


#include
#include
void main()
{
 int i,j,ans;
 clrscr();
 printf("enter the value of j:");
   scanf("%d",&j);
 for(i=1;i<=10;i++)
 {
  ans=i*j;
  printf("%d*%d=%d",j,i,ans);
  printf("\n");
 }
 getch();
}

No comments:

Post a Comment