Due to the same history of C and C++, both languages are closely related. Because neither of them is a subset of the other, you have to know a few rules to mix them.

The chapter in the C++ core guidelines is called: C-style programming. Honestly, my first thought was to skip it, but after more thoughts I decided to write about it. My reason is twofold:
- This are the typical issues we have when dealing with legacy code.
- One reader wanted that I write more about the challenges of legacy code.
Here are the three rules for today:
The first rules are obvious because I write about the C++ core guidelines.
Without further ado, the reason from the C++ core guidelines: "C++ provides better type checking and more notational support. It provides better support for high-level programming and often generates faster code."
The first question you have to answer is: Can you compile the entire code with a C++ compiler?
Entire source code available
Fine, you are almost done. Almost, because C is not a subset of C++. Here is a small and bad C program that will break with a C++ compiler.
// cStyle.c
#include <stdio.h>
int main(){
double sq2 = sqrt(2); // (1)
printf("\nsizeof(\'a\'): %d\n\n", sizeof('a')); // (2)
char c;
void* pv = &c;
int* pi = pv; // (3)
int class = 5; // (4)
}
First, let me compile and execute it with the C90 standard.
The compilation succeeds with a few warnings.

The program cStyle.c has a few issues. There is no declaration for the sqrt function (line 2), line (3) performs an implicit conversion from a void pointer to an int pointer, and line (4) uses the keyword class.
Let's see what the C++ compiler is saying.

I get what I deserve: three compiler errors. The program cStyle.c shows are more subtile difference between a C and a C++ compiler. I reduced the program to the line (2): printf("\nsizeof(\'a\'): %d\n\n", sizeof('a'));. Here ist the output.

Instead of 4 such as for the C compiler, sizeof('a') is 1 with the C++ compiler. 'c' is an int in C.
Now, to the more challenging job.
Entire source code not available
These are the important points.
- Use your C++ compiler to compile your main function. In contrast to a C compiler, a C++ compiler generates additional startup code which is executed before the main function. For example, this startup code calls constructors of global (static) objects.
- Use your C++ compiler to link your program. The C++ compiler, when used for linking the program, will automatically link in the standard C++ libraries.
- Use a C and C++ compiler from the same vendor which should have the same calling conventions. A calling convention specifies the method that a compiler sets up to access a function. This includes in which order parameters are allocated, how parameters are passed, or whether the caller of the callee prepares the stack. Read the full details of x86's calling conventions on Wikipedia.
In contrast to C, C++ supports function overloading. This means that you can define a function having the same name but different parameters. The compiler picks the right function when a function is invoked.
// functionOverloading.cpp
#include <iostream>
void print(int) {
std::cout << "int" << std::endl;
}
void print(double) {
std::cout << "double" << std::endl;
}
void print(const char*) {
std::cout << "const char* " << std::endl;
}
void print(int, double, const char*) {
std::cout << "int, double, const char* " << std::endl;
}
int main() {
std::cout << std::endl;
print(10);
print(10.10);
print("ten");
print(10, 10.10, "ten");
std::cout << std::endl;
}
The output is as expected.

The exciting question is now: How can the C++ compiler distinguish the various functions? The C++ compiler encodes additionally the type of the parameters into the function name. This process is called name mangeling and is specific for each C++ compiler. The process which is not standardised is often also called name decoration.
With the help of the functionOverloading.cpp on compiler explorer, it is quite easy to show the mangled name. Just disable the button Demangle.
Here are the names that the GCC 8.3 and MSVC 19.16 is producing.

By using the extern "C" linkage specifier, you can prevent the C++ compiler from mangling the names.
By declaring the function with extern "C" in your code, you can call a C function from C++, or a C++ function from C.
You can use extern "C" for each function,
extern "C" void foo(int);
for each function in a scope,
extern "C" {
void foo(int);
double bar(double);
};
or for the entire header file by using include guards. The macro __cplusplus is defined when the C++ compiler is used.
#ifdef __cplusplus
extern "C" {
#endif
void foo(int);
double bar(double);
.
.
.
#ifdef __cplusplus
}
#endif
What's next?
I'm totally happy to announce that with the next post begins a series to CppInsight. CppInsight is an awesome tool that I use heavily in my posts and in my classes to show the magic of the C++ compiler. But the tool lacks a good introduction. Who can be better equipped for writing this introduction as Andreas Fertig, the author of CppInsight?
Thanks a lot to my Patreon Supporters: Matt Braun, Roman Postanciuc, Tobias Zindl, G Prvulovic, Reinhold Dröge, Abernitzke, Frank Grimm, Sakib, Broeserl, António Pina, Sergey Agafyin, Андрей Бурмистров, Jake, GS, Lawton Shoemake, Animus24, Jozo Leko, John Breland, Venkat Nandam, Jose Francisco, Douglas Tinkham, Kuchlong Kuchlong, Robert Blanch, Truels Wissneth, Kris Kafka, Mario Luoni, Friedrich Huber, lennonli, Pramod Tikare Muralidhara, Peter Ware, Daniel Hufschläger, Alessandro Pezzato, Bob Perry, Satish Vangipuram, Andi Ireland, Richard Ohnemus, Michael Dunsky, Leo Goodstadt, John Wiederhirn, Yacob Cohen-Arazi, Florian Tischler, Robin Furness, Michael Young, Holger Detering, Bernd Mühlhaus, Matthieu Bolt, Stephen Kelley, Kyle Dean, Tusar Palauri, Dmitry Farberov, Juan Dent, George Liao, Daniel Ceperley, Jon T Hess, Stephen Totten, Wolfgang Fütterer, Matthias Grün, Phillip Diekmann, Ben Atakora, Ann Shatoff, Dominik Vošček, and Rob North.
Thanks, in particular, to Jon Hess, Lakshman, Christian Wittenhorst, Sherhy Pyton, Dendi Suhubdy, Sudhakar Belagurusamy, Richard Sargeant, Rusty Fleming, John Nebel, Mipko, Alicja Kaminska, and Slavko Radman.
My special thanks to Embarcadero 
My special thanks to PVS-Studio 
My special thanks to Tipi.build 
Seminars
I'm happy to give online seminars or face-to-face seminars worldwide. Please call me if you have any questions.
Bookable (Online)
German
Standard Seminars (English/German)
Here is a compilation of my standard seminars. These seminars are only meant to give you a first orientation.
- C++ - The Core Language
- C++ - The Standard Library
- C++ - Compact
- C++11 and C++14
- Concurrency with Modern C++
- Design Pattern and Architectural Pattern with C++
- Embedded Programming with Modern C++
- Generic Programming (Templates) with C++
New
- Clean Code with Modern C++
- C++20
Contact Me
- Phone: +49 7472 917441
- Mobil:: +49 176 5506 5086
- Mail: This email address is being protected from spambots. You need JavaScript enabled to view it.
- German Seminar Page: www.ModernesCpp.de
- Mentoring Page: www.ModernesCpp.org
Modernes C++,

Read more...