How does the for loop work in c?

1 answer

Answer

1150657

2026-07-19 00:05

+ Follow
  • For loop is "Counter controlled loop" i.e. a counter or control variable is used to process the for loop , as discussed in earlier chapters.
  • For loop is an "Entry controlled loop" i.e. the condition to iterate the loop must be check at the starting of the loop and loop body will not execute if the condition is False. Source website:

http://codedunia.in/c-language/for-loop-in-c-programming.php

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.