私は2つの2次元配列を持っています。ある時点で、2 つのうちの 1 つを選択してループする必要があります。2 次元配列をループするには、どのようなポインターが必要ですか?
const char *a[] = {
"example1",
"example2",
NULL
};
const char *b[] = {
"example1",
"example2",
"example3",
"example4",
"example5",
NULL
};
const char *pointer = a;
int count = 0;
while(pointer != NULL)
{
puts(pointer[count]);
count++;
}