C (programming language): Difference between revisions
Jump to navigation
Jump to search
imported>Alex Bravo mNo edit summary |
imported>Alex Bravo mNo edit summary |
||
Line 1: | Line 1: | ||
C is a general-purpose, procedural, imperative [[computer]] [[programming language]] developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the [[Unix]] operating system. It has since spread to many other platforms, and is now one of the most widely used programming languages. C has also greatly influenced many other popular languages, especially [[C++]], which was originally designed as an enhancement to C. It is the most commonly used programming language for writing system software, though it is also widely used for writing applications. | C is a general-purpose, procedural, imperative [[computer]] [[programming language]] developed in 1972 by [[Dennis M. Ritchie]] and [[Brian W. Kernighan]] at the Bell Telephone Laboratories for use with the [[Unix]] operating system. It has since spread to many other platforms, and is now one of the most widely used programming languages. C has also greatly influenced many other popular languages, especially [[C++]], which was originally designed by Bjarne Stroustroup as an enhancement to C. It is the most commonly used programming language for writing system software, though it is also widely used for writing applications. | ||
==Syntax== | ==Syntax== |
Revision as of 18:14, 23 February 2007
C is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis M. Ritchie and Brian W. Kernighan at the Bell Telephone Laboratories for use with the Unix operating system. It has since spread to many other platforms, and is now one of the most widely used programming languages. C has also greatly influenced many other popular languages, especially C++, which was originally designed by Bjarne Stroustroup as an enhancement to C. It is the most commonly used programming language for writing system software, though it is also widely used for writing applications.
Syntax
Hello World
#include <stdio.h> int main() { printf("Hello, world!\n"); return 0; }