Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Dody

  1. Dody

    help compiling C in C++

    Hi To link C code with C++ code use the follow MACRO : all the includes #ifdef __cplusplus extern "C" { #endif Your code ... #ifdef __cplusplus } #endif The C++ compiler add sufixx to the function and the C Compiler doesn't add any suffix. This Macro will help you.
  2. Dody

    Challenge one . Generic function in C C++ JAVA

    Hi Guys I would like to write function that can be call from C++,C and from Java programmas, like generice function. Thanks

Part and Inventory Search

Back
Top