← Back to All Languages
Foundational

C

Est. 1972
CreatorDennis Ritchie (Bell Labs)
ParadigmProcedural • Imperative

The mother of modern programming languages. C provides low-level access to memory and is the foundation for operating systems, compilers, and countless other languages.

Hello World
1#include <stdio.h>
2int main() {
3 printf("Hello, World!\n");
4 return 0;
5}