Printing Table of 10
This is a program of while loop in which we are going to print the table of 10 with the help of C Programming language.


#include <stdio.h>
int main()
{
    int i = 1, j;
    while (i <= 10)
    {
        j = i * 10;
        printf("%d \n", j);
        i++;
    }
    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