Kara Monaco's PMOY Issue
Got my hands on Kara's PMOY issue thrifting (for only $10)!!!!
Is there anything anyone would want to see if that's allowed!
This is my first issue I've ever bought
u/fashion_diva_27 — 3 days ago
Got my hands on Kara's PMOY issue thrifting (for only $10)!!!!
Is there anything anyone would want to see if that's allowed!
This is my first issue I've ever bought
I am trying to run the test code of the example used in Kelly's lecture before jumping into right-aligning the columns, and keep getting this error message:
"mario.c:15:21: error: redefinition of 'i'
15 | for (int i = 1, i < height; i++)
| ^
mario.c:15:14: note: previous definition is here
15 | for (int i = 1, i < height; i++)
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
2 errors generated.
make: *** [<builtin>: mario] Error 1"
This was the code I used (copied from the lecture, as it is just for the example):
for (int i = 1, i <= height; i++)
{
print_row(i);
}