17 day 
 

We will continue learning about A loops


C While Loop

he while Loop is an entry-controlled loop in C programming language. This loop can be used to iterate a part of code while the given condition remains true.

while (test expression)
{
   // body consisting of multiple statements
}
 
https://www.youtube.com/watch?v=hxytPOaDaIE&list=PLfgCIULRQavzxY-IO2sO5Vj5x7C_tjW3R&index=13

Comments

Popular posts from this blog