C语言字符串输出
printf("%s\n", s);char aaa[] = "aaa";//输出单个字符百分号后面用c,输出字符串百分号后面用sprintf("%c\n", *(aaa + 1)); or printf("%c\n", aaa[0]);