make_pair

template<class T, class U>
    pair<T, U> make_pair(const T& x, const U& y);

The template function returns pair<T, U>(x, y).

See the related sample program.