what is loop? and syntex
Answers
Answered by
3
Answer:
Hii Dude.....
Ans:-
Syntax:- The syntax of a for loop in C programming language is − for ( init; condition; increment ) { statement(s); } Here is the flow of control in a 'for' loop − The init step is executed first, and only once. This step allows you to declare and initialize any loop control variables.
Similar questions