Home Backend Development C#.Net Tutorial C++ introductory learning books for novice programmers (book list)

C++ introductory learning books for novice programmers (book list)

Jun 18, 2020 pm 01:01 PM
c++ noob

C++ introductory learning books for novice programmers (book list)



This (Book list)


This article describes a list of must-read books for learning C as a programmer, recommending them one by one from entry, systemization, function libraries, pursuit of performance and elegance, and philosophy.


Therefore, this article basically does not mention the learning of C, but just sticks to C.

Getting Started


Choose one of "Accelerated C" and "Essential C" for intensive reading. Selected readings from "A Tour of C".

"Accelerated C" is very suitable for novices, because it has less than 300 pages, which is a breath of fresh air among the generally brick-like introductory books. Easy to read through and less frustrating.

"Essential C" is more suitable for beginners with other programming experience to quickly learn C. The content will be deeper than "Accelerated C".

"A Tour of C", the masterpiece of C creator, is suitable for those who have just finished learning, or those who have finished studying for a long time to quickly review C knowledge.

While reading the book, I also supplemented it with information from these websites for cross-checking——

C Tutorial :http://www.runoob.com/cplusplus/cpp-tutorial.html############Hello, C :https://zhuanlan.zhihu.com/nihaoCPP#### ########C introductory series blog: https://www.jianshu.com/u/67702c00ea59############For example, I was mainly looking at Accelerated C. I would read the supplementary information on my mobile phone during odd hours such as commuting after work to see if my understanding was different from reading. Sometimes I even realize that the expression of certain concepts in the information is not accurate, and at this moment I find that I really understand it. This cross-checking reading method can make you more confident in your basic understanding when you get started. ######After completing this step, you can start to look at other people's code on GitHub and try to write some code. ###In my case, I learned how to create a new C project under xcode, and then followed these links to write two calculators and a student management system. Then began to move bricks. ###Calculator 1: https://blog.csdn.net/jiejinquanil/article/details/51405381###Calculator 2: https://www.zhihu.com/question/28582706###Student Management System :https://blog.csdn.net/qcyfred/article/details/53969547######Getting started is the most critical step. You have a preliminary understanding of various basic concepts and successfully write and run code. It feels great. ###The following introduction is about the vast ocean after you successfully get started. Swim slowly, slowly, slowly, and well. Be careful, don't be in a hurry, and don't have the idea of ​​​​learning the following content in one go and then start working. Because that would take a lot of time and the effect is not good. Besides, C is endless to learn, and no one dares to say that it is proficient. Please practice and keep learning at the same time. ######Systematization######After you get started, you should read more systematic books if you have time. ### Specifically, ### choose one of "C Programming Language" (now in its fourth edition) and "C Primer" for intensive reading. ###You can read another book if you have time later. ### (Emphasis on the reminder!!! "C Primer" and "C Primer Plus" are not different versions of the same book, and the authors are also different. [Not recommended] read "C Primer Plus") ###### Function Library######At this point you should have overcome the syntax barrier and start to understand the function library. You can take a look at ### "C Standard Library", "In-depth Understanding of the C Object Model" and Mr. Hou Jie's "STL Source Code Analysis" in order. #########Chasing performance and elegance######You should have a small degree of success in C now. You may be interested in how to write better performance and more elegant C code. You can continue reading. ###《Effective C》and《More Effective C》,《Exceptional C》. #########Philosophy######If you can persist to the last step, you may be going crazy. Madmen like to ask philosophical questions, such as who is C, where does it come from, and where is it going. ###Try to read###"Meditations on C" and "The Design and Evolution of C / C Language Design and Evolution"###. ###In addition, C (C language) is a language that is relatively close to the bottom of the computer among high-level languages. If you learn more about computer structure, storage, and computing principles, you will have a more thorough understanding of the ins and outs of C. You can read "Introduction to Computer Science", "Code Encyclopedia" of software engineering, "Modern Operating System" of operating systems, and programs "In-depth Understanding of Computer Systems" for beginners. ###

I hope everyone can benefit from reading these books.

This article is reproduced from: https://blog.csdn.net/greens1995/article/details/82890133

Recommended tutorial: "C Language"

The above is the detailed content of C++ introductory learning books for novice programmers (book list). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1673
14
PHP Tutorial
1278
29
C# Tutorial
1257
24
C# vs. C  : History, Evolution, and Future Prospects C# vs. C : History, Evolution, and Future Prospects Apr 19, 2025 am 12:07 AM

The history and evolution of C# and C are unique, and the future prospects are also different. 1.C was invented by BjarneStroustrup in 1983 to introduce object-oriented programming into the C language. Its evolution process includes multiple standardizations, such as C 11 introducing auto keywords and lambda expressions, C 20 introducing concepts and coroutines, and will focus on performance and system-level programming in the future. 2.C# was released by Microsoft in 2000. Combining the advantages of C and Java, its evolution focuses on simplicity and productivity. For example, C#2.0 introduced generics and C#5.0 introduced asynchronous programming, which will focus on developers' productivity and cloud computing in the future.

Golang and C  : Concurrency vs. Raw Speed Golang and C : Concurrency vs. Raw Speed Apr 21, 2025 am 12:16 AM

Golang is better than C in concurrency, while C is better than Golang in raw speed. 1) Golang achieves efficient concurrency through goroutine and channel, which is suitable for handling a large number of concurrent tasks. 2)C Through compiler optimization and standard library, it provides high performance close to hardware, suitable for applications that require extreme optimization.

Where to write code in vscode Where to write code in vscode Apr 15, 2025 pm 09:54 PM

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

Golang vs. C  : Performance and Speed Comparison Golang vs. C : Performance and Speed Comparison Apr 21, 2025 am 12:13 AM

Golang is suitable for rapid development and concurrent scenarios, and C is suitable for scenarios where extreme performance and low-level control are required. 1) Golang improves performance through garbage collection and concurrency mechanisms, and is suitable for high-concurrency Web service development. 2) C achieves the ultimate performance through manual memory management and compiler optimization, and is suitable for embedded system development.

Python vs. C  : Learning Curves and Ease of Use Python vs. C : Learning Curves and Ease of Use Apr 19, 2025 am 12:20 AM

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

Python vs. C  : Exploring Performance and Efficiency Python vs. C : Exploring Performance and Efficiency Apr 18, 2025 am 12:20 AM

Python is better than C in development efficiency, but C is higher in execution performance. 1. Python's concise syntax and rich libraries improve development efficiency. 2.C's compilation-type characteristics and hardware control improve execution performance. When making a choice, you need to weigh the development speed and execution efficiency based on project needs.

Golang and C  : The Trade-offs in Performance Golang and C : The Trade-offs in Performance Apr 17, 2025 am 12:18 AM

The performance differences between Golang and C are mainly reflected in memory management, compilation optimization and runtime efficiency. 1) Golang's garbage collection mechanism is convenient but may affect performance, 2) C's manual memory management and compiler optimization are more efficient in recursive computing.

Python vs. C  : Understanding the Key Differences Python vs. C : Understanding the Key Differences Apr 21, 2025 am 12:18 AM

Python and C each have their own advantages, and the choice should be based on project requirements. 1) Python is suitable for rapid development and data processing due to its concise syntax and dynamic typing. 2)C is suitable for high performance and system programming due to its static typing and manual memory management.

See all articles