Dennis Ritchie
Jump to navigation
Jump to search
Dennis Ritchie was a person.
- See: ALTRAN, B (Programming Language), BCPL, C (Programming Language), Multics, Unix, Software Engineer.
References
2019
- (Wikipedia, 2019) ⇒ https://en.wikipedia.org/wiki/Dennis_Ritchie Retrieved:2019-10-3.
- Dennis MacAlistair Ritchie (September 9, 1941 – October 12, 2011) was an American computer scientist. He created the C programming language and, with long-time colleague Ken Thompson, the Unix operating system and B programming language. Ritchie and Thompson were awarded the Turing Award from the ACM in 1983, the Hamming Medal from the IEEE in 1990 and the National Medal of Technology from President Bill Clinton in 1999. Ritchie was the head of Lucent Technologies System Software Research Department when he retired in 2007. He was the "R" in K&R C, and commonly known by his username dmr.
1988
- (Kernighan & Ritchie, 1988) ⇒ Brian W. Kernighan, and Dennis Ritchie. (1988). “The C Programming Language.”
- QUOTE: ... The only way to learn a new programming language is by writing programs in it. The first program to write is the same for all languages:
Print the words
hello, world
... In C, the program to print ``hello, world" is a #include <stdio.h>
- QUOTE: ... The only way to learn a new programming language is by writing programs in it. The first program to write is the same for all languages:
main() { printf("hello, world\n"); }