When Should I Use C?
Learn about how we can leverage the features of C language to our advantage.
We'll cover the following...
As we learned in the previous lesson, C has an edge over many of the other languages in that it’s fast, has a fine-grained access to the system, and has a small memory footprint. This makes C a language of choice for scientific applications, system programming, and
Let’s look at these in more detail.
C for scientific programming
You should ...