Yes and no.
1. Local array: No, but you can easily find the size
If you have a local array (int numbers[4] = {1, 2, 3, 4];) then you can do size = sizeof(numbers) / sizeof(int).
2. Pointer to array: Not at all, you have to pass the size around separately
If you have a pointer to an array (int* numbers = new int[4];) then you can't figure out the size unless you keep track of it yourself. (or if it's null terminated in the case of a c string, but then you have to iterate through it which is linear running time...)
Note that I don't believe pointer to array is the proper terminology, really you just have a pointer to the first element of the array but space for multiple values has been allocated. Not sure what this is called. Maybe just a pointer?
3. STL containers: Yes, and you can do some for loop magic using iterators, or just use indices by getting the size
If you have a vector (std::vector<int> v(3, 0);) then you can iterate through it the following ways:
C++11:
auto it = v.begin();
for (auto it = v.begin(); it != v.end(); it++)
{
UseElement(*it);
}
Or apparently (also C++11, thanks jrok):
for (const int& i : v) { UseElement(i); }
C++ (pre-11):
std::vector<int>::iterator it;
for (it = v.begin(); it != v.end(); it++)
{
UseElement(*it);
}
Or using indices:
for (int i = 0; i < v.size(); i++)
{
UseElement(v[i]);
}
Furthermore, you can use function pointers or functors with STL containers using std algorithm's for_each (#include <algorithm>) like so:
void foo(int i)
{
std::cout << i;
}
{
std::for_each(myvector.begin(), myvector.end(), foo);
}