There are only two kinds of languages: the ones people complain about and the ones nobody uses.
—Bjarne Stroustrup, the Father of the C++ Language
To continue where we left off, this chapter demonstrates how C++ can be applied to embedded systems. Script languages are also examined in this chapter.
Firmware Coding in C++
C++ is a powerful language, and it offers a lot of cool features to embedded system developers. However, there are a few things you should keep in mind before you jump onto the C++ wagon:
Unlike C, the standard of C++ keeps changing. Sometimes it is hard to ...