How does A[i+1] work in an array c++ program.
Answers
Answered by
1
[0] [1] [2] [3]
12 13 14 15
let this be the memory allocation
if i=0
A[i]=12
then
A[i+1]=13
12 13 14 15
let this be the memory allocation
if i=0
A[i]=12
then
A[i+1]=13
Similar questions