multimap::rbegin() is a built-in-function in C++ STL which returns an iterator pointing to the last element of the container.
Syntax:
multimap_name.rbegiin()
Parameters: The function does not take any parameter.
Return Value: The function returns a reverse iterator pointing to the last element of the container.
(
Note: Reverse iterators iterate backwards i.e when they are increased they move towards the beginning of the container)
The following two programs illustrates the function.
Program 1
Output
c = 50
Program 2