Answer:
a
Step-by-step explanation:
The variable declared in the for is accessible only within the for loop and it goes out of scope once the loop get end
eg : for(int i=1;i<=10,i++) // variable i is declared
{
// variable i is visible only in this block,
}
//After this the variable i goes out of scope