#include <iostream>

int main()
{
    int * roger[5] = {NULL};
    for(int i = 0; i < 5; ++i) std::cout << roger[i] << std::endl;
    return 0;
}
