首页 > 其他 > 详细

课堂作业修改

时间:2017-03-31 20:06:30      阅读:172      评论:0      收藏:0      [点我收藏+]
#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这个函数没有定义,编译时有提示,后来发现了。

课堂作业修改

原文:http://www.cnblogs.com/cx-1314521/p/6652989.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!