标题:关于’\0‘,
取消只看楼主
掘路者
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2017-11-20
结帖率:0
 问题点数:0 回复次数:0 
关于’\0‘,
#include<stdio.h>
void delchar(char *s,char c)
{
    char *p;
    for(p=s;*s;s++)
        if(*s!=c)
        {
            *p++=*s;
        }
        
}

void main()
{
    char c,s[100];
    printf("Input a string:\n");
    gets(s);
    printf("Input a char:After deleted,the string is:\n");
    scanf("%c",&c);
    delchar(s,c);
    printf("%s\n",s);
}

#include<stdio.h>
void delchar(char *s,char c)
{
    char *p;
    for(p=s;*s;s++)
        if(*s!=c)
        {
            *p++=*s;
        }
        *p='\0'
}
void main()
{
    char c,s[100];
    printf("Input a string:\n");
    gets(s);
    printf("Input a char:After deleted,the string is:\n");
    scanf("%c",&c);
    delchar(s,c);
    printf("%s\n",s);
}
按第一个代码输入happy new year!
输出的是hppy new yer!
按第二个代码输出的却是 hppy new yer!r!
请问这是为什么?

[此贴子已经被作者于2017-12-24 12:08编辑过]

搜索更多相关主题的帖子: void char printf Input string 
2017-12-24 12:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-483678-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.068295 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved