19 day
We will continue learning about A Loops
while loop in C
The 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
Syntax
The while loop syntax is as follows:
while (test expression)
{
// body consisting of multiple statements
}
https://www.youtube.com/watch?v=WmhKhYg6NRo&list=PLfgCIULRQavzxY-IO2sO5Vj5x7C_tjW3R&index=15
Comments
Post a Comment