我想输出一个数组的倒序,我如果直接printf c可以输出了,但如果我printf c[j]它就无法输出不知道为啥子
把 %s 改成 %c
输出用printf("%c",c[j]);或者不用循环,直接printf("%s",c);