For loop in C++
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times.
Syntax
for(initialization; condition; updation) { body; }
for Flow Diagram

Example:
WAP to print hello 5 times using for loop.#include< iostream > using namespace std; int main( ) { int i; for(i=1; i<=5; i++) { cout<< i<<". Hello"<< endl; } return 0; }OUTPUT:
1. Hello 2. Hello 3. Hello 4. Hello 5. Hello
Next topic is While loop
Training For College Campus
We offers college campus training for all streams like CS, IT, ECE, Mechanical, Civil etc. on different technologies
like
C, C++, Data Structure, Core Java, Advance Java, Struts Framework, Hibernate, Python, Android, Big-Data, Ebedded & Robotics etc.
Please mail your requirement at info@prowessapps.in
Projects For Students
Students can contact us for their projects on different technologies Core Java, Advance Java, Android etc.
Students can mail requirement at info@prowessapps.in