C program of WHILE Loop

 #include<stdio.h>


int main()
{
    int i=0;
    while(i<54)
    {
        printf("%d\n",i);
        i=i+1;
    }
   
    return 0;
}

OUTPUT

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

Comments

Post a Comment

Popular posts from this blog

C Program using continue statement

NULL Pointer in C.

C Program using DO WHILE loop

C Program using SWITCH statement

New Animated Login or signup page made by HTML, CSS and JavaScript.

C Program to print multiplication table of any number.

C Language Travel Agency Manager Exercise.

STRUCTURE IN C PROGRAMMING.