课上作业补充
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了课上作业补充相关的知识,希望对你有一定的参考价值。
#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,下课向同学请教,现在理解了。
以上是关于课上作业补充的主要内容,如果未能解决你的问题,请参考以下文章