<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>1024中文社区 - C/C++</title>
    <link>https://www.1024la.com/forum-11-1.html</link>
    <description>Latest 20 threads of C/C++</description>
    <copyright>Copyright(C) 1024中文社区</copyright>
    <generator>Discuz! Board by Discuz! Team</generator>
    <lastBuildDate>Sun, 05 Apr 2026 06:56:29 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.1024la.com/static/image/common/logo_88_31.gif</url>
      <title>1024中文社区</title>
      <link>https://www.1024la.com/</link>
    </image>
    <item>
      <title>C语言指针完全指南 - 新手也能看懂的指针教程</title>
      <link>https://www.1024la.com/thread-24-1-1.html</link>
      <description><![CDATA[【C语言入门】指针完全指南 - 看完这篇再也不怕指针

什么是指针？
指针就是一个变量，它存储的是另一个变量的内存地址。

基本语法：
int a = 42;       // 普通变量，存储值42
int *p = &amp;a;      // 指针变量，存储a的地址

两个关键运算符：
&amp; 取地址符 - 获取变量的 ...]]></description>
      <category>C/C++</category>
      <author>7n25gSnP</author>
      <pubDate>Sun, 22 Mar 2026 09:13:43 +0000</pubDate>
    </item>
    <item>
      <title>C Pointers Made Easy - A Visual Guide for Beginners</title>
      <link>https://www.1024la.com/thread-19-1-1.html</link>
      <description><![CDATA[C Pointers Made Easy - No More Confusion!

What is a Pointer?
A pointer is a variable that stores the MEMORY ADDRESS of another variable.

Basic Syntax:
int a = 42;       // a variable holding value 42
int *p = &amp;a;      // p is a pointer, storing a]]></description>
      <category>C/C++</category>
      <author>7n25gSnP</author>
      <pubDate>Sun, 22 Mar 2026 09:05:32 +0000</pubDate>
    </item>
    <item>
      <title>【C/C++ 入门】C++ 基础语法详解 - 变量与数据类型</title>
      <link>https://www.1024la.com/thread-12-1-1.html</link>
      <description><![CDATA[C++ 基础语法 - 变量与数据类型
一、什么是变量？变量是程序中存储数据的基本单元。
变量定义：数据类型 变量名 = 初始值;
示例：int age = 25; double price = 99.99;
二、C++ 基本数据类型：整型 (int)、浮点型 (float/double)、字符型 (char)、布尔型 (bool)
三、变 ...]]></description>
      <category>C/C++</category>
      <author>7n25gSnP</author>
      <pubDate>Sat, 21 Mar 2026 11:05:27 +0000</pubDate>
    </item>
  </channel>
</rss>