Ask your own question, for FREE!
Computer Science 9 Online
OpenStudy (anonymous):

What does #idef _cplusplus extern "C" { #endif ... #ifdef _cplusplus } #endif mean

OpenStudy (anonymous):

It's that the same header can be used both in C and C++.

OpenStudy (anonymous):

Agreeing with konsaliaris this question i asked my DataCenter team to find it out they said this happened

OpenStudy (anonymous):

Yes i have my own Data Server Here in the United States Employeeing over 150+ Americans

OpenStudy (anonymous):

If you're calling a function, for example in a library, that was compiled using a C compiler, you may end up getting linker errors, because C compilers mangle function names differently than C++ compilers. You can get around that by declaring the prototype to the C function as extern "C" - that way the C++ compiler knows it's a C-compiled function and mangles the function name for the call appropriately.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!