【C语言】21-指针-3

目录

  • 1. 指针数组
    • 1.1 什么是指针数组
    • 1.2 如何定义指针数组
    • 1.3 如何使用指针数组
  • 2. 多重指针
    • 2.1 二重指针的定义
    • 2.2 二重指针的初始化与赋值
    • 2.3 二重指针的使用
  • 3. 指针常量、常量指针、指向常量的常指针
    • 3.1 概念
    • 3.2 const pointer
    • 3.3 pointer to a constant
      • 3.3.1 (pointer to a constant)-constant
      • 3.3.2 poiner-constant
      • 3.3.3 (pointer to a constant)-variable
      • 3.3.4 poiner-variable

你可能感兴趣的:(C语言基础,c语言)