[32] How to mix C and C++

C와 C++이 섞여있는 소스코드는 어떻게 관리되면 좋은것일까??

나름 잘 정리해 놓은 것 같은 사이트발견.. !!

근데... 사실 내가 진짜 해결하고자 했던 문제와는 좀 별개군 ㅎㅎ

[32.1] C와 C++ 소스 코드를 혼합해서 사용할 때 내가 알아야 될것은 무엇일까?

* main() 함수는 C++ 소스로 만들어야 한다. (e.g., for static initialization)
* Your C++ compiler should direct the linking process (e.g., so it can get its special libraries)
* C와 C++ 컴파일러가 같은 회사 제품이어야 하고 그 둘은 호환이 되는 버전이어야 한다. (e.g., so they have the same calling conventions)



http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html