C Program to print multiplication table from 1 to 10 using do-while loop

 "Multiplication table from 1 to 12 using do-while loop"

1 to 10 using do-while loop

#include <stdio.h>
#include <conio.h>
void main()
{
    int i,j;
    i=1;
    printf("Multiplication table\n\n");
    printf("Here multiplication table\n\n");
 do{
    j=1;
 do{
    printf("%5d\t",i*j);
    j++;
 }while(j<=10);
    printf("\n");
    i++;
    }while(i<=10);
    getch();
    }

Expected Output:
Output


3 Comments

  1. We help students to complete their assignments and academic tasks. Our experts are here for you 24x7x365. Get in touch with us today and make your academic tasks a cakewalk. get bets programming assignment help with our experts.

    ReplyDelete
Previous Post Next Post