C 语 言 如 何 索 引 字 符 串 数 组
eg.定义一个字符串数组:
char *strings[]={"hello","world"};
则索引第一个字符串为strings[0],索引第一个字符串的第一个字符为strings[0][0]