Why is indexing of strings called two way indexing?
Answer:
Indexing of strings is called two way indexing it can be done in 2 directions:
- In forward direction ie., left to right . The indexes go from 0,1,2….length-1.
- In backward direction ie., right to left. The indexes go from -1,-2,-3…-length.