Tagged Questions
0
votes
3answers
138 views
Roadblock-confused about structure of program
I'm new to programming, and I'm working in C. I know that this is structured programming but if I use blocks, say for local variables:
{
int i;
for(i=0; i<25; i++){
printf("testing...\n");
...