Search code examples
c#c++ccomparison

What are the differences between C, C# and C++ in terms of real-world applications?


As I posted earlier here I've decided to try my hand at one of these, but given my interests as a web developer, I'd like to know the difference between them in their real-world applications.

Edit Note:

While I'm a web developer, please don't let that limit your answer. I'm 30...I've got years of career changing ahead of me.


Solution

  • Both C and C++ give you a lower level of abstraction that, with increased complexity, provides a breadth of access to underlying machine functionality that are not necessarily exposed with other languages. Compared to C, C++ adds the convenience of a fully object oriented language(reduced development time) which can, potentially, add an additional performance cost. In terms of real world applications, I see these languages applied in the following domains:

    C

    • Kernel level software.
    • Hardware device drivers
    • Applications where access to old, stable code is required.

    C,C++

    • Application or Server development where memory management needs to be fine tuned (and can't be left to generic garbage collection solutions).
    • Development environments that require access to libraries that do not interface well with more modern managed languages.
    • Although managed C++ can be used to access the .NET framework, it is not a seamless transition.

    C# provides a managed memory model that adds a higher level of abstraction again. This level of abstraction adds convenience and improves development times, but complicates access to lower level APIs and makes specialized performance requirements problematic.

    It is certainly possible to implement extremely high performance software in a managed memory environment, but awareness of the implications is essential.

    The syntax of C# is certainly less demanding (and error prone) than C/C++ and has, for the initiated programmer, a shallower learning curve.

    C#

    • Rapid client application development.
    • High performance Server development (StackOverflow for example) that benefits from the .NET framework.
    • Applications that require the benefits of the .NET framework in the language it was designed for.

    Johannes Rössel makes the valid point that the use C# Pointers, Unsafe and Unchecked keywords break through the layer of abstraction upon which C# is built. I would emphasize that type of programming is the exception to most C# development scenarios and not a fundamental part of the language (as is the case with C/C++).