This is a program of while loop in which the loop will be an infinite loop i.e. the program will not terminate by itself we will have to terminate it manually using C programming language.
#include <stdio.h>
int main()
{
int j = 1;
while (j != 10)
{
printf("%d", j);
continue;
j++;
}
}
//........Coded by ARADHANA MISHRA
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP