What is subscripted value in array
Answers
Answered by
0
The individual elements of an array are referenced by appending a subscript, in square brackets, behind the name. The subscript itself can be any legitimate C expression that yields an integer value, even a general expression. ... Usually, the array size is fixed, while strings can have a variable number of elements.
Answered by
2
The individual elements of an array are referenced by appending a subscript, in square brackets, behind the name. The subscript itself can be any legitimate C expression that yields an integer value, even a general expression. ... Usually, the array size is fixed, while strings can have a variable number of elements.
Similar questions