Perhaps the most important modern programming language is C and its descendant C++ (to simplify the notation, I will simply refer to C with the understanding that I am also referring C++). C is a language written in the early 1970's by programmers for programmers. The design concept was to generate a language suitable for systems programming. As a result, properly coded C is stripped down and very fast. Unix and MS Windows are both written mostly in C for this reason. C offers the programmer the ability to produce fast programs, customized and highly abstract data structures and is very portable (C source code written on a Windows PC will often compile and run without modification on a Unix Cray).
The downside of C is the learning curve. C is a very powerful language with a lot of positive attributes-for those who know how to exploit it. On the other hand, a beginning programmer will very likely get frustrated when his first C programs do not work, as C requires far more of the programmer in terms of syntax, structure, data structuring, memory management, etc. Creating a simple "Hello World" program in C is not terribly difficult, but the novice programmer will most likely scratch his head at the inclusion of several of the lines of code required. Here is an example of a very basic C (not C++) ``Hello World'' program:
{
printf(``Hello World'');
return;
}