What is the output of the following code snippet?
list numberlist;
const int SIZE = 10;
int i;
for (i = 0; i< SIZE; i++)
numberlist.push_back (i);
list::iterator p;
p = numberlist.begin();
while (p != numberlist.end())
{
p++;
cout << *p;
p++;
}
a) 13579
b) 02468
c) 86420
d) 97531
e) 0246810
f) 0123456789