在c语言中我想对汉字字符串按拼音进行排序,可以直接利用strcmp函数来进 ...答:include<stdio.h>#include<string.h> int main(){ char a[5] = "王华", b[5] = "张丽", c[5] = "李强";char t[5];if(strcmp(a, b) > 0){ strcpy(t, a);strcpy(a, b);strcpy(b, t);} if(strcmp(a, c) > 0){ strcpy(t, a);strcpy(a, c);strcpy(c, t);} ...