Comprehensive Collection of C/C++ Interview Knowledge

Comprehensive Collection of C/C++ Interview Knowledge

Interview questions related to C and C++ are relatively rare compared to those in the Java domain. This article is a valuable summary of C and C++ interview knowledge points. const Function Modifies a variable to indicate that the variable cannot be changed; Modifies a pointer, which can be a pointer to a constant (pointer … Read more

In-Depth Exploration of C and C++: The Two Pillars of the Programming World

In-Depth Exploration of C and C++: The Two Pillars of the Programming World

Click the blue text above to follow us Introduction In the world of computer science, C and C++ are undoubtedly two extremely important programming languages. They not only shape the foundation of modern software development but also possess unique charms and application scenarios. C was born around 1972, developed by Dennis Ritchie at Bell Labs, … Read more

Differences and Connections Between C and C++

Differences and Connections Between C and C++

Differences and Connections Between C and C++ Introduction C and C++ are two widely used programming languages with a long history, playing significant roles in software development. Despite their many similarities, there are also notable differences. This article will explore the similarities and differences between these two languages in detail. 1. Basic Overview 1. C … Read more

Comparison of Speed Between Rust and C

Comparison of Speed Between Rust and C

Author | Kornel Translator | Sambodhi Planner | Zhao Yuying This article was originally published on the author’s personal blog and is translated and shared by InfoQ Chinese site with the authorization of the original author Kornel. Programs written in Rust should have runtime speeds and memory usage comparable to those written in C. However, … Read more

The Relationship Between C Language and Other Languages: C, C++, and Python

The Relationship Between C Language and Other Languages: C, C++, and Python

The Relationship Between C Language and Other Languages: C, C++, and Python In the field of programming, the C language is a highly influential and foundational programming language. Its design philosophy and characteristics of simplicity and efficiency have laid the groundwork for many subsequent programming languages. This article will explore the relationship between C and … Read more

A Selection of Open Source Projects in C/C++ for Beginners

A Selection of Open Source Projects in C/C++ for Beginners

Introduction Today, I will share several open source projects in the fields of C and C++ that I have collected, which are suitable for beginners. These projects cover basic language knowledge, data structures and algorithm problems, design patterns implementations, and even efficiency tools and practices. I hope they will be helpful.  Later, I will … Read more

A Brief Discussion on Makefile, Kconfig, and .config Files in the Linux Kernel Source Code

A Brief Discussion on Makefile, Kconfig, and .config Files in the Linux Kernel Source Code

Follow+Star Public Account Number, don’t miss out on exciting content Source | Baiwen Technology WeChat Public Account | Embedded Column The Linux kernel source code contains numerous files, and it can be confusing to understand the relationship between Makefile, Kconfig, and .config. Without a clear understanding of the kernel compilation system, one may struggle with … Read more

Implementing an HTTP Downloader in C

Implementing an HTTP Downloader in C

Click the blue text Follow us Due to changes in the public account push rules, please click “View” and add “Star” to get exciting technical shares at the first time Source from the internet, please delete if infringing This time I would like to share an HTTP downloader implemented in C. For example, when doing … Read more

Embedded Databases in Real-Time Systems

Embedded Databases in Real-Time Systems

The Future of Database Real-Time Performance “Real-time” is a term frequently mentioned by database system vendors, but real-time has a specific meaning in embedded systems. According to geeksforgeeks.org[1]: “A real-time system is one where the system is affected by real-time constraints, meaning it must respond within specified timing constraints or meet defined deadlines. For example, … Read more

Embedded Linux Tool: libuhttpd, A Powerful, Lightweight, and Efficient HTTP Server Library

Embedded Linux Tool: libuhttpd, A Powerful, Lightweight, and Efficient HTTP Server Library

Are you tired of bulky HTTP server libraries struggling on resource-constrained embedded Linux systems? Do you crave a lightweight, high-performance, and easily extensible HTTP server solution? Then, allow me to introduce—libuhttpd! What is libuhttpd? libuhttpd is a super lightweight, high-performance HTTP server library based on libev and http-parser, specifically designed for embedded Linux systems. It … Read more