Are go and c languages the same author?
yes. There are three authors of the Go language: Robert Griesemer, Rob Pike and Ken Thompson; among them, Ken Thompson is also the author of the C language. Ken Thompson is a member of the Unix team at Bell Labs and one of the founders of C language, Unix and Plan9. He designed and implemented the original UNIX operating system in the 1970s. From this point of view alone, his contribution to computer science This cannot be overemphasized.
The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.
The Go language (or Golang) originated in 2007 and was officially released in 2009. Go is a very young language, and its main goal is to "have both the development speed of dynamic languages such as Python and the performance and security of compiled languages such as C/C."
golang author
There are three authors of Go language, they are: Robert Griesemer, Robert ·Rob Pike and Ken Thompson, pictured below (left to right). Among them, Robert Glitzmer is the main contributor of Google V8, Chubby and HotSpot JVM; Rob Pike is the author of UNIX, UTF-8, plan9; Ken Thompson is the author of B language and C language, and is also the author of UNIX, UTF-8 and plan9. The father of UNIX.
Picture: Three authors of Go language
1) Ken Thompson
Member of Bell Labs Unix team, C One of the founders of the language, Unix, and Plan 9, he designed and implemented the original UNIX operating system in the 1970s. From this point alone, his contribution to computer science cannot be overstated. He also collaborated with Rob Pike to design the UTF-8 encoding scheme.
2) Rob Pike
The general manager of the Go language project and a member of the Unix team at Bell Labs. In addition to helping design UTF-8, he also helped develop distributed Multi-user operating system Plan 9, Inferno operating system and Limbo programming language, and co-authored "The Unix Programming Environment", which gave an orthodox explanation of the design concept of UNIX.
3) Robert Griesemer
Works at Google and participates in the development of the Java HotSpot virtual machine. He has an in-depth understanding of language design and is responsible for the Chrome browser and Node.js The code generation part of the Google V8 JavaScript engine used.
Description:
Robert Glitzmer, Rob Pike and Ken Thompson began designing the Go language in September 2007. Later, Ian Lance Taylor, Russ Cox also participated in the design of the Go language. In November 2009, the Go language was officially announced and became an open source project. The Go language was first implemented on the Linux and Mac OS platforms, and later the implementation under the Windows system was added. In March 2012, the Go language released its first official stable version. In 2016, the Go language was selected as the "TIOBE Best Language of 2016" by the software evaluation company TIOBE.
Expand Your Knowledge: Ken Thompson
Kenneth Lane Thompson (1943-2 January 4th -), nicknamed Ken Thompson (English: Ken Thompson), was born in New Orleans, USA. He is an American computer science scholar and software engineer who works at Bell Labs Entrisphere, IncGoogle Inc. Together with Dennis Ritchie, he was the 1983 Turing Award winner. He and Dennis Ritchie designed the B and C languages, created the Unix and Plan 9 operating systems, and are co-authors of the programming language Go. Developed regular notation, wrote the early computer text editors QED and ed, defined UTF-8 encoding, and developed computer chess.
Ken Thompson designed the C language with Dennis Ritchie, who is also the co-author of the programming language Go.
Ken Thompson (left) and Dennis Ritchie
Work experience
In development During his time at Multics, Thompson created a programming language called Bon. Thompson spent a month developing a new operating system, UNiplexed Information and Computing System (UNICS), which could run on the PDP-7 machine and was later renamed UNIX. The first version of Unix was developed based on the B language. The Bon language was not powerful enough for systems programming, so Thompson and Ritchie adapted it and co-invented the C language in 1971.
In 1973, Thompson and Ritchie rewrote UNIX in C language. Installed on the PDP-11 machine.
In 1983, the Association for Computing Machinery awarded the Turing Award to Thompson and Dennis.
In December 2000, Thompson retired, left Bell Labs, and became a pilot.
In 2006, Thompson joined Google and co-led the development of the Go language with Robert Pike and Robert Gray Small.
【Related recommendations: Go video tutorial, Programming teaching】
The above is the detailed content of Are go and c languages the same author?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



C language data structure: The data representation of the tree and graph is a hierarchical data structure consisting of nodes. Each node contains a data element and a pointer to its child nodes. The binary tree is a special type of tree. Each node has at most two child nodes. The data represents structTreeNode{intdata;structTreeNode*left;structTreeNode*right;}; Operation creates a tree traversal tree (predecision, in-order, and later order) search tree insertion node deletes node graph is a collection of data structures, where elements are vertices, and they can be connected together through edges with right or unrighted data representing neighbors.

The truth about file operation problems: file opening failed: insufficient permissions, wrong paths, and file occupied. Data writing failed: the buffer is full, the file is not writable, and the disk space is insufficient. Other FAQs: slow file traversal, incorrect text file encoding, and binary file reading errors.

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

C language multithreading programming guide: Creating threads: Use the pthread_create() function to specify thread ID, properties, and thread functions. Thread synchronization: Prevent data competition through mutexes, semaphores, and conditional variables. Practical case: Use multi-threading to calculate the Fibonacci number, assign tasks to multiple threads and synchronize the results. Troubleshooting: Solve problems such as program crashes, thread stop responses, and performance bottlenecks.

Go language performs well in building efficient and scalable systems. Its advantages include: 1. High performance: compiled into machine code, fast running speed; 2. Concurrent programming: simplify multitasking through goroutines and channels; 3. Simplicity: concise syntax, reducing learning and maintenance costs; 4. Cross-platform: supports cross-platform compilation, easy deployment.

C Language Data Structure: Overview of the Key Role of Data Structure in Artificial Intelligence In the field of artificial intelligence, data structures are crucial to processing large amounts of data. Data structures provide an effective way to organize and manage data, optimize algorithms and improve program efficiency. Common data structures Commonly used data structures in C language include: arrays: a set of consecutively stored data items with the same type. Structure: A data type that organizes different types of data together and gives them a name. Linked List: A linear data structure in which data items are connected together by pointers. Stack: Data structure that follows the last-in first-out (LIFO) principle. Queue: Data structure that follows the first-in first-out (FIFO) principle. Practical case: Adjacent table in graph theory is artificial intelligence

Troubleshooting Tips for C language processing files When processing files in C language, you may encounter various problems. The following are common problems and corresponding solutions: Problem 1: Cannot open the file code: FILE*fp=fopen("myfile.txt","r");if(fp==NULL){//File opening failed} Reason: File path error File does not exist without file read permission Solution: Check the file path to ensure that the file has check file permission problem 2: File reading failed code: charbuffer[100];size_tread_bytes=fread(buffer,1,siz

C language conditional compilation is a mechanism for selectively compiling code blocks based on compile-time conditions. The introductory methods include: using #if and #else directives to select code blocks based on conditions. Commonly used conditional expressions include STDC, _WIN32 and linux. Practical case: Print different messages according to the operating system. Use different data types according to the number of digits of the system. Different header files are supported according to the compiler. Conditional compilation enhances the portability and flexibility of the code, making it adaptable to compiler, operating system, and CPU architecture changes.
