字符串怎么写#include #include int conv(char s) { return tolower(s); } int main() { char s[] = "Clare"; int i = -1; while(s[i++]) s[i]=conv(s[i]); puts(s); while(1); }什么是字符串?请举例说明由数字、字母、下划线组成的一串字符叫做字...