1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#include <iostream>
using namespace std;
int &at (int* vec, unsigned len, unsigned i);
const int LEN = 5;
int main()
{
int vec[LEN] = { 0 , 1 , 2 , 3 , 4 } ;
at(vec,LEN,1) = 1001;
cout << at(vec, LEN, 1) << '\n';
cout << at(vec, LEN, 5) << '\n';
return 0;
}
int &at (int* vec, unsigned len, unsigned i)
{
if ( i < len)
{
vec = &vec[i];
}
else
{
cout << "Index overflow";
}
return *vec;
}
|