码迷,mamicode.com
首页 > 其他好文 > 详细

补充作业

时间:2017-03-31 18:41:23      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:技术分享   条件   pre   字符串   循环   str   include   void   变量   

 

#include<stdio.h>
int main()
{    void funstr(char str[12]);
     char str[12]={"hello world"};
     char *a=str;
     str[0]=‘H‘;
     str[6]=‘W‘; 
     funstr(a);
     return 0;
} 
void funstr(char str[12])
{
    int t=0;
    printf("%s\n",str);
    while(str[t]!=‘\0‘)
    {
        printf("%c\n",str[t]);
        t++;
    }
}
技术分享
技术分享
Hello World
H
e
l
l
o

W
o
r
l
d
请按任意键继续. . .

   总结:有许多细节部位致错,课下通过查书p76页表3.8,明确了%c是字符输出函数,%s是字符串输出函数。

         p260页可得知,需要定义一个指针变量去指向数组。且该代码没while的循环变量定义初始条件

          数组没有定义至足够长度也是另一个方面。循环条件(为t)及输出有\n也出现了错误,所以致错。

补充作业

标签:技术分享   条件   pre   字符串   循环   str   include   void   变量   

原文地址:http://www.cnblogs.com/jirjpk/p/6652790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!