求分析错误。。。
void charup(char * str){ int i=0; for(;str[i]!='/0';i++) { if(str[i]>='a'&&str[i]<='z') { [color=#FF0000]str[i]=str[i]-32;[/color] } }}void main(){ char * a="abDe"; charup(a); printf("%s",a);}