for (int o = 0; o + n + 1 < height; o++)
{
printf(" ");
}
/* o is now out-of-scope */
The scope of identifier o
stops after the }
.
for (int o = 0; o + n + 1 < height; o++)
{
printf(" ");
}
/* o is now out-of-scope */
The scope of identifier o
stops after the }
.