我已经编写了一个工作程序,但该任务的表格不正确。有人可以帮我将代码更改为
“空下(char * s)”
试图改变和定位它,但没有工作结果。不完全了解 void 类型和其他功能中的一个功能,依此类推。
代码:
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main ()
{
int i=0;
const char s[]="SoMeThing SOmEThing stRing\n";
char lower;
printf("%s",s);
while (s[i])
{
lower=s[i];
putchar(tolower(lower));
i++;
}
return 0;
}
谢谢