我想要做的是遍历报价直到报价结束/(*报价中没有任何内容).我的代码有效吗?
char *quote = "To be or not to be, that is the question."; for (quote = 0; *quote != NULL; quote++){ *quote = tolower(*quote); }
c string pointers loops
c ×1
loops ×1
pointers ×1
string ×1