What exactly is the array name in c?

前端 未结 6 927
无人共我
无人共我 2020-11-22 10:47

I am having a tough time understanding the type and use of the name of the array in C. It might seems a long post but please bear with me.

I understand that the foll

6条回答
  •  旧巷少年郎
    2020-11-22 11:23

    In answer to question 1, this is simply an aspect of the C language as designed, unlike most other modern languages C/C++ allows direct manipulation of addresses in memory and has built in facilities to 'understand' that. There are many articles online that explain this better than I could in this small space. Here is one and I am sure there are many others: http://www.cprogramming.com/tutorial/c/lesson8.html

提交回复
热议问题