#include #include int main() { const std::vector v { 12, 23, 34 }; const auto it = cbegin(v); std::cout << (*it) << std::endl; }