1 1 vote Programming in C programming-in-c array + – Sourabh Kumar 1.1k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes In an array, the memory space is allocated in a contiguous manner. Therefore if we know the address of a[i-1] then can find the address of a[i] by going forward in memory by the size of integer. Hence the answer. shraddha priya answered Jun 18, 2017 shraddha priya comment Share Follow See all 6 Comments 6 6 Comments reply Show 3 previous comments shraddha priya commented Jun 26, 2017 reply Follow flag Option 3 is correct only when the indexing of array starts from 0 but not when it starts from 1. 0 0 replyShare Arnab Bhadra commented Jun 26, 2017 reply Follow flag Yes, you are right 0 0 replyShare Hemaxi commented Jul 6, 2017 reply Follow flag But for arrays, indexing does start at 0 .also while storing it's always base address that matters.so why not option 3 0 0 replyShare Please log in or register to add a comment.