|
|
|
|
|
by archfrog
1009 days ago
|
|
Is it me or is there a bug with pointers on the bottom of http://www.pjhutchison.org/tutorial/pointers.html? The author uses this code to dereference a pointer to a structure member: engine = *myvehicle->enginesize;
Unless I've forgotten 30 years of C experience, I'd expect this to be: engine = myvehicle->enginesize;
But it could be some peculiarity in the Amiga compiler.Now I just wish I had the money to buy an Amiga when I was a kid :-) |
|
It's also assigning string literals to char array struct members in a non-initializing context, which doesn't work.
As someone trying to piece together C knowledge from various b0rk3n tutorials (as a pre-Internet teenager in the early 90s) it's pretty provocative. Luckily I healed and levelled up since.