C语言指向数组的指针及容易混淆的概念.docxVIP

  • 5
  • 0
  • 约4.57千字
  • 约 6页
  • 2019-06-11 发布于广东
  • 举报

C语言指向数组的指针及容易混淆的概念.docx

C语言:指向数组的指针及容易混淆的概念 When learning C language, the pointer part did not learn very solid Several unusual pointers: Int (* P) [4] pointer to an array, pointing to an array like int a[4] Int (* P) points to the function, which returns the int value The int * P pointer to the pointer points to a pointer to the int variable =============================== contrast Int (* P) [4] Int * P [4], where the latter is an array of pointers containing 4 int * type elements Int (* P)() Int * P (), where the latter is a function that returns the data of the int * type Int (* P) [4] Int * * P this issue needs

文档评论(0)

1亿VIP精品文档

相关文档