1 2 3 4 5 6 7
#include <iterator> int main() { int a[] = { 0, 1, 2 }; auto ai = std::cbegin(a); return *ai; }