The books that C language beginners can read include: 1. [C Language Introduction Classic]; 2. [C primer plus]; 3. [C and Pointers]; 4. [C Programming Language]; 5. [C Expert Programming].
# Are you planning to learn C language by reading books? "Books are mankind's most loyal friends." Hemingway must have known the importance of books in a person's life. Books are a rich source of knowledge. You can learn all kinds of knowledge from books. Books can convey the author's original intention to readers without discrimination. The C language was developed by Dennis Ritchie at Bell Labs from 1969 to 1973. C language can simply compile programs into machine instructions, making it the most efficient language.
Recommended courses: C Language Tutorial
C is a structured language that focuses on algorithms and data structures. The primary consideration in the design of a C program is how to process input (or environmental conditions) to obtain output (or implement process (transaction) control) through a process.
1. C Language Introduction Classic
"C Language Introduction Classic" has simple examples It is life-oriented and each example is analyzed in detail. The chapters are arranged reasonably, and the examples at the end of the chapters pay special attention to the guidance of ideas, and the analysis is particularly rewarding.
This book is a good book for the self-study process.
2.C primer plus
This book is very suitable for readers who want to learn C language systematically , as its name suggests, is a good introductory and advanced book. Each knowledge point in the book has many vivid and simple examples, and the corresponding operation results are given. In short, while reading this book, I felt like it was all in one go.
3. C and pointers
This book and "Expert Programming" and "C Defects and Traps" can be called C Three masters of language (advanced book). Some of the content in this book is more suitable for people with a C foundation. For example, in the parts of ADT, recursion, pointers and arrays, the ideas described in the book are lacking in domestic textbooks. After reading this book, you can get a correct view of C language.
4. C Programming Language
It is incredible that such a C language book This introductory book starts with hello world, but in a short space, it teaches you step by step how to write most of the routines in stdio.h stdlib.h string.h, realizing binary search, quick sort, binary tree, and hash table. These important data structures and algorithms. This book conveys simplicity, elegance, plainness and leisure.
5. C Expert Programming
"C Expert Programming" showcases the coding techniques used by the best C programmers , and dedicated a chapter to introduce the basic knowledge of C. In the book, C's history, language features, declarations, arrays, pointers, links, runtime, memory, and how to further learn C are explained and analyzed in depth.
At first, it may be difficult to learn C language with the help of books. However, these books introduce the basic concepts in C language in the best possible way. With the help of these books, you can start from learning the basic C language and progress to advanced techniques in C language programming. It is important to complete the exercises in the book. In the process of implementing these exercises, you can effectively understand and learn related concepts.
The above is the detailed content of What books can beginners of C language read?. For more information, please follow other related articles on the PHP Chinese website!