Question: Are Expressions arrays[i] and i[arrays] same?
Answer: We know that we can use pointer and indirection to access an array. Let’s try to rewrite the exp.
arrays[i];
using pointer as:
*(arrays + i);
which, of course, we can write as:
advertisement
advertisement
*(i + arrays); /* addition is 'commutative' */
which we rewrite in subscript form as:
i[arrays];
So, these two expressions are same! But writing this way is awkward and one should practice decent style of programming!
Sanfoundry Global Education & Learning Series – 1000 C Tutorials.
If you wish to look at all C Tutorials, go to C Tutorials.
Related Posts:
- Check C Books
- Practice Computer Science MCQs
- Practice BCA MCQs
- Apply for C Internship
- Check Computer Science Books