104k views
0 votes
Random access iterators are ____ iterators that can randomly process elements of a container.

A.
input

B.
forward

C.
bidirectional

1 Answer

3 votes

Answer:

C. Bidirectional

Step-by-step explanation:

If we want to access elements at an any random offset position then we can use random access iterators.They use the functionality 'as relative to the element they point to' like pointers.Random access iterators are Bidirectional iterators that can randomly process elements,pointer types are also random-access iterators.

User Spir
by
7.4k points