i have a couple questions about for loops that i’m not quite sure is correct, this is using c# as well.
for (int i =1; i<100; i+1){
Console.Write(i);
}
i is declared as 1, so does it check if the declared variable is less than 100 and if that’s true it will then add 1 until it gets to 100?