#include <stdio.h> void convert(char *p) { while(*p != '\0') { if (*p >= 'A' && *p <= 'Z')
时间: 2024-05-26 10:15:02 浏览: 56
#include <stdio.h>
4星 · 用户满意度95%
{ *p = *p + 32; } p++; } } int main() { char str[] = "Hello World"; convert(str); printf("%s", str); return 0; }
这段代码的功能是什么?
阅读全文