by misonic on 5/5/25, 2:17 AM with 30 comments
by Timwi on 5/5/25, 7:24 AM
It's intriguing to think how different my experience could have been if educational material at the time had focused as much on full explanations of the compiler+linker process, including example error conditions, as it did on teaching the language.
30 years later, I like to claim that I have a reasonably workable understanding of how compilers work, but I'm still nebulous on how linkers do what they do. I'm much more comfortable with higher-level compilers such as C# that compile to a VM bytecode (IL) and don't worry about linkers.
by lynx97 on 5/5/25, 6:44 AM
> puts() writes the string s and a trailing newline to stdout.
int main() { puts("Hello World!"); }
by stef-13013 on 5/5/25, 11:06 AM