Syntax of For loop?
Answers
Answered by
14
Explanation:
Step 1: First initialization happens and the counter variable gets initialized.
Step 2: In the second step the condition is checked, where the counter variable is tested for the given condition, if the condition returns true then the C statements inside the body of for loop gets executed, if the condition returns false then the for loop gets terminated and the control comes out of the loop.
Step 3: After successful execution of statements inside the body of loop, the counter variable is incremented or decremented, depending on the operation (++ or –).
Example of For loop
#include <stdio.h>
int main()
{
int i;
for (i=1; i<=3; i++)
{
printf("%d\n", i);
}
return 0;
}
Similar questions
English,
4 months ago
Chemistry,
4 months ago
English,
4 months ago
Social Sciences,
9 months ago
Social Sciences,
9 months ago
Math,
1 year ago
Physics,
1 year ago
Hindi,
1 year ago