'while' Loop:-
while loop is the simplest loop of c language. This loop executes one or more statements while the given condition remains true. it is useful when the number of iterations is not known in advance.
Syntax:-
The syntax of while loop is follows:while(condition)
Statement;
Post a Comment