Question d’entretien chez Code Brew Labs

what is while loop in c.

Réponse à la question d'entretien

Utilisateur anonyme

7 mai 2023

A while loop in C programming repeatedly executes a target statement as long as a given condition is true. Syntax The syntax of a while loop in C programming language is - while(condition) { statement(s); }

1