>>855
おまえは↓見てスゴイスゴイ言ってれば良いよ。
#include <stdio.h>

void print(const char** s)
{
while (*s) {
printf("%s", *s);
s++;
}
}

int main(void)
{
const char* hello[] = {"こ", "ん", "に", "ち", "は", "世", "界", NULL};
puts(hello[3]);
puts(hello[1]);
puts(hello[0]);
hello[0] = "H";
hello[1] = "e";
hello[2] = hello[3] = "l";
hello[4] = "o";
print(hello);
}
https://wandbox.org/permlink/OtKKJplub0RkTQGy