While Loop

Loop

If you want to execute a block of code more than one time then you can use loop. Loops are used in c programming to repeat a specific block of code.


While Loop

initialization : It is an initial variable of value which is used start while() loop. Initialization is a variable which is used to hold that initial value from where you want to start while() loop.

condition : If condition returns true then loop body will be execute. while() loop checks each and every iteration condition. A iteration which condition returns false value then while() loop will be automatically terminate. condition tells how many times

iteration : It is use to increment or decrement initialization variable value.

Syntax

initialization;
while(condition){
/* code here */
iteration;
}

See Output

About Us

Comsysapp.com is an educational website. Students and software developers can learn programming language tutorials. Comsysapp is very useful for beginners and professional developers. Comsysapp provides tutorial in easy language. Comsysapp.com has focus on simplicity.

Services

Comsysapp.com provides free tutorials like c, html, css, etc. All tutorials are free for beginner and professionals.


Terms of Use

comsysapp.com is not responsible for any mistake. We are not responsible if information made available on our website is incomplete or invalid. But comsysapp.com always try for zero-zero mistake.

Privacy policy

comsysapp.com does not collect any data from users. We use Google AdSense advertising on our website. We never ask personal or private information.


Sitemap

sitemap

copyright © 2023