Search Results

6
votes

Why do we need extern “C”{ #include <foo.h> } in C++?

In C++, you can have different entities that share a name. For example here is a list of functions all named foo: A::foo() B::foo() C::foo(int) …
4
votes

Compiler test cases or how to test a compiler

There are several compiler test suites out there. We've had some luck using the Plum Hall test suite for a C compiler. It consists …