Intel Launches Second-Generation Automotive AI Enhanced Chip, Partnering with Industry Leaders like ModelBest to Enter the Smart Vehicle Market: How Will Chinese Automakers Break Through?

Recently, at the 2025 Shanghai International Auto Show, Intel held a technology launch event, officially introducing the second-generation AI-enhanced Software Defined Vehicle (SDV) system-on-chip (SoC) — the world’s first automotive chip utilizing a multi-process node Chiplet architecture, showcasing Intel’s ambition in the smart vehicle sector.On that day, Intel also announced a strategic partnership with industry … Read more

Top 100 Chip Rankings: What is the Underlying Logic of China Resources Microelectronics’ IDM Transformation?

Apr. Click the blue text to follow us 2025.04 Introduction:China Resources Microelectronics is transforming from a local power device manufacturer into a system-level supplier with both product strength and platform capabilities. The Chinese semiconductor industry has developed over several decades, evolving from nothing to a robust sector, giving rise to a number of outstanding local … Read more

China’s Semiconductor Tariff Exemption List Released! Storage Chips Still Restricted, Industry Calls for Further Relaxation

According to exclusive reports from Caijing, China’s import tariff exemptions for 8 semiconductor/integrated circuit-related tariff codes have officially come into effect, involving key equipment and materials for chip design, packaging, and testing. This move will directly reduce costs for enterprises, but storage chips (such as DRAM and NAND) are still excluded from the list, sparking … Read more

Impact of A14 Process on Mainland Computing Chips and Automotive Chips

1. Introduction In the semiconductor industry, every breakthrough in process technology is akin to a technological revolution, redefining the boundaries of chip performance and injecting powerful vitality into the fields of intelligent electronic devices and high-performance computing. On April 24, 2025, TSMC officially announced at the 2025 Technology Symposium in the United States that its … Read more

Understanding the BIOS Chip on the Motherboard

1. What is BIOS The term BIOS first appeared in 1975, and it stands for Basic Input Output System. It truly gained prominence with the launch of the IBM PC in 1981, marking the beginning of a tumultuous history. The IBM PC system generally consists of three parts: hardware, software, and the middleware BIOS, with … Read more

Analysis of Four Mainstream Chip Mounting Technologies in Chip Packaging

Chip mounting is a core process in semiconductor packaging, and the choice of technology directly affects the thermal management, electrical performance, and long-term reliability of devices. This article systematically analyzes the process characteristics and applicable scenarios of four mainstream mounting technologies and discusses industry development trends. For more common topics, click above to follow and … Read more

Pioneering the Era of 10-Gigabit Networking: An Analysis of H3C’s Commercial 10-Gigabit Solutions

Click ▲ to follow “IT168 Enterprise” and pin the public account More exciting content delivered to you first With the continuous development of network technology, more and more terminal devices are connecting to the network, and users’ demand for high-speed networks is increasing. Network speeds have progressed from 10 megabits to 100 megabits, and then … Read more

Learning C Language: Part Eight

Three Essential Elements of a Function Functionality, Parameters, Return Value. 1. Function Exercises 1. Define four functions to implement the operations of two integers: +, -, *, / my_add my_sub my_mul my_div After writing, test the functionality yourself. #include <stdio.h> int my_add(int x, int y); int my_sub(int x, int y); int my_mul(int x, int y); … Read more

Daily C Language Challenge No. 10: Number Guessing Game – Can You Guess It in 10 Attempts?

📌 Problem Description Write a number guessing game with the following rules:: The program randomly generates an integer between 1~100. The user has a maximum of 10 attempts, with hints provided as “too high” or “too low” after each guess. Upon guessing correctly, a congratulatory message is displayed; if unsuccessful, the correct answer is revealed. … Read more

C Language Basics – Using Function Pointer Arrays for String Cleaning

#include <stdio.h> #include <string.h> #include <ctype.h> typedef void (*funcPtr)(char *); // 1. Remove leading and trailing whitespace (similar to Python's strip) void trim(char *str) { int i = 0, j; int len = strlen(str); // Remove leading whitespace while (isspace(str[i])) i++; // Remove trailing whitespace j = len – 1; while (j >= 0 && … Read more