for staement is always used along with which statement
Answers
Answered by
0
First thing, for is not a statement. Its a keyword used to activate for loop.
The structure of a for loop is:
for(initializing value;test expression or condition;updation)
{
body of for loop
}
The body can contain any statement.
You cannot declare a variable in any loop.
VedaantArya:
Depends on the language :3
Similar questions