源代码如下:
#include "stdio.h"
#include "conio.h"
char *toDaXie(char *s);
main()
{
char *s;
printf("Input a string please!\n");
gets(s);
printf("The result:\n%s\n",toDaXie(s));
getch();
}
char *toDaXie(char *s)
{
int i;
for(i=0;i96&&s[i]<123)
s[i]-=32;
}
return s;
}
扩展资料
1、在C++程序开发中,程序员需要使用 for() 循环语句时,常常将循环遍历定义在 for() 内部。
2、C语言程序的“短路表达式”决定了只有 executeStepA() 函数成功才会接着执行 executeStepB() 函数,只有 executeStepB() 函数也成功,才会执行 executeStepC() 函数。