将字符串char a[]="HelloWorld!"中的小写字母转换成大写字母?
发布网友
发布时间:2024-10-24 09:53
我来回答
共1个回答
热心网友
时间:2024-11-02 03:07
#include <stdio.h>
int main()
{
char a[] = "HelloWorld!";
char* p = a;
while (*p)
{
if (*p >= 'a' && *p <= 'z')
*p -= 'a' - 'A';
p++;
}
printf("%s", a);
}