2
votes
4answers
791 views
Static and dynamic library linking
In C++, static library A is linked into dynamic libraries B and C. If a class, Foo, is used in A which is defined in B, will C link if it doesn't use Foo?
I thought the answer was yes, but …
1
vote
Learning C and/or C++ from beginner to advanced
One of the most helpful things for me was/is Bjarne Stroustrup's homepage. He is the creator of C++. Quite a lot of programmers don't know what the differences between C and C++ are, so don't worry …
