C
From DocForge
| This page is a stub. It's lacking in details and can use your help. Please contribute your knowledge to this page. |
C is a programming language which was created by Brian Kernighan and Dennis Ritchie to aid in the implementation of the Unix operating system. C is a compiled language typically used for systems programming (operating system-kernels and drivers, utilities and services).
C is also the basis for some scripting languages, such as PHP, perl, ruby, python and the java virtual machine. Many scripting languages have been created with the intent of speeding development of projects which would otherwise have been implemented in a compiled language such as C.
[edit] Characteristics
- Strongly typed variables
- Complex data types (struct, union and enum)
- Type casting
- Functions
- Pointer referencing and dereferencing
- header-files and pre-compilation-macroes
- ANSI-standard APIs

