首页 > 代码库 > 课上作业补充

课上作业补充

#include<stdio.h>
main()
{char funstr(char* str);
    char  str [11]="helloworld";
printf("%s\n",str);
str[0]=H;
str[6]=w;
puts(str);
getchar();
funstr(str);}
char funstr(char* str)
{int i=0;
printf("%s\n",str[11]);
while (str[i]!=0)
{printf("%c",str[i]);}
}

Hello World!

Hello World!

--------------------------------

Process exited after 0.136 seconds with return value 33

请按任意键继续. . .
总结:课堂上不理解,只是定义了一下字符窜什么的,不会转换字符“h”与"H,下课向同学请教,现在理解了。

 

课上作业补充