MCPcopy Create free account
hub / github.com/0voice/cpp_new_features / main

Function main

cpp_14/001_stl_end.cpp:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3using namespace std;
4
5int main()
6{
7 int ia[] = {0,1,2,3};
8 int *beg = begin(ia);
9 int *last = end(ia);
10 cout << *beg << endl;
11 cout << *(last-1) << endl;
12 return 0;
13}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected