编写一个自定义函数(指针做函数参数),将字符串中的小写字母转换为大写字母,在主函数中输入字符串调用自定义函数并输出结果
时间: 2023-07-16 11:15:00 浏览: 110
javascript自定义函数参数传递为字符串格式
以下是一个将字符串中的小写字母转换为大写字母的自定义函数的示例代码:
```c
#include <stdio.h>
#include <ctype.h>
void convertToUpper(char *str) {
int i = 0;
while(str[i]) {
str[i] = toupper(str[i]); // 使用 toupper 函数将小写字母转换为大写字母
i++;
}
}
int main() {
char str[100];
printf("请输入一个字符串:");
fgets(str, 100, stdin); // 使用 fgets 函数输入字符串
convertToUpper(str); // 调用自定义函数将小写字母转换为大写字母
printf("转换后的字符串为:%s", str);
return 0;
}
```
在这个示例代码中,我们使用了 `toupper` 函数将字符串中的小写字母转换为大写字母。同时,我们使用了 `fgets` 函数输入字符串,可以读入包含空格的字符串。
阅读全文