The ANSI C Programming Language

C is a programming language first implemented in 1972, is a general purpose programming language with wide hardware support, and many different compilers:

c compilers

C is also at the core of the Linux opperating system, as is it at the core of most developer tools.

C is a language that rides the line of complexity and simplicity well.

Hello World in C

#include <stdio.h>

int
main()
{
    printf("Hello World!\n");
}

Links

incoming(3) | meta | python | software