Updated a sentence to be more meaningful. (#25033)

This commit is contained in:
apurv22
2018-12-15 11:52:52 +05:30
committed by Manish Giri
parent 69c325fa04
commit 738fa3553d

View File

@ -2,7 +2,7 @@
title: Loops of all kinds
---
# Loops of all kinds in C
Loops are what you use when you have code that you want to loop, meaning that after it runs, you might want it to loop around to the beginning and run again. There are a few of these in C.
Loops are what you use when you have code that you want to execute more than once, meaning that after it runs, you might want it to loop around to the beginning and run again. There are a few of these in C.
They can be categorized as: