课堂作业修改
Posted 何丽婷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了课堂作业修改相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char str[]={"hello world"}; void funstr(char str[]); str[0]=‘H‘; str[6]=‘W‘; funstr(str); system("pause"); return 0; } void funstr(char a[]) { int i; printf("%s\n",a); for(i=0;i<strlen(a);i++) { printf("%c",a[i]); } }
Hello World Hello World请按任意键继续. . . -------------------------------- Process exited after 1.72 seconds with return value 0 请按任意键继续. . .
总结:题头忘记打string这个头文件,导致strlen这个函数没有定义,编译时有提示,后来发现了。
以上是关于课堂作业修改的主要内容,如果未能解决你的问题,请参考以下文章