What is the difference between an Array Data Structure and an Array Data-type in the context of a programming language like C?

后端 未结 4 1502
我在风中等你
我在风中等你 2020-12-29 16:03

Wikipedia differentiates an Array Data Structure and an Array Data-type.

What is the difference between an Array Data Structure and an Array Data-type in the context

4条回答
  •  無奈伤痛
    2020-12-29 16:37

    The structure of your array determines how the array is implemented (storage and access), the data type refers to the types of data contain within the array. For your reading pleasure read each of these links.

提交回复
热议问题