#include <iostream>

int main()
{
    char* test[] =
    {
        "",
        "        ",
        "1234569",
        "abc",
        "lastoneiquit"
    };

    char test2[5][15] =
    {
        "",
        "        ",
        "1234569",
        "abc",
        "lastoneiquit"
    };

    std::cout << "Size of test: " << sizeof(test) << '\n';
    std::cout << "Size of test2: " << sizeof(test2) << '\n';
}