0
votes
How to combine several C/C++ libraries into one?
Combining several third-party libraries into one could create more problems for you--for instance, if two of those libraries define a common symbol which your program doesn't use. Now you've got t …
4
votes
What are the major differences between ANSI C and K&R C?
Function prototypes were the most obvious change between K&R C and C89, but there were plenty of others. A lot of important work went into standardizing the C library, too. Even though the st …
1
vote
Using C in a shared multi-platform POSIX environment.
Launching a Python interpreter instance just to select the right binary to run would be much heavier than you need. I'd distribute a shell .rc file which provides aliases.
In /shared/bin, …
