OneCompiler

Table 1 to 100

1640
## #include <stdio.h>
int main()
{
    int table=1;
    while (table<=100){
          int t=0;
          while(t<=10)      {
            int ztable=table*t ;
            printf("%dX%d=%d ",table,t,ztable);
            if (t==0){printf("next table \n");}
            if (t==10){printf(" ");}
       
              t++;
                   }
      
      table++;
      
    }
}