C program to find multiples of a number || do while loop || C Programming
In this, we are going to see the do-while loop, the program is based on the do-while loop which basically Prints table of any number with the help of the C Programming language.
 



#include <stdio.h>
int main()
{

    int n;
    int i = 1;
    printf("Enter the no. to get its table : \n");
    scanf("%d", &n);
    do
    {
        printf("%d x %d = %d \n", n, i, n * i);
        i++;
    } while (i <= 10);
    return 0;
}

//..........Coded by ARADHANA MISHRA


#ENJOY CODING

Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post