Infinite do-while loop || do while loop || C programming
In this, we are going to see the do-while loopthe program is based on the do-while loop which basically Prints infinite do-while loop with the help of the C Programming language. 


#include <stdio.h>

//using Enumeration function is C to declare our own boolean datatype,
//because bool datatype is not there in C

typedef enum{F,T} boolean;

int main()
{
    boolean condition = T;
    do
    {
        printf("Help For Coders !");
    } while (condition);
    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