码迷,mamicode.com
首页 > 编程语言 > 详细

C: 字符数组中的空去掉

时间:2018-05-29 20:43:28      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:hang   pre   near   stdio.h   turn   去掉   har   return   code   

#include <stdio.h>
#include <string.h>

int main()
{
    char a[50] = "nearby!                 ";
    int i, j;
    int count = 0;
    for (i = 0, j = 0; a[i]; i++)
    {
        if (a[i] != ‘ ‘){
            a[j++] = a[i];
        }
    }
    a[j] = ‘\0‘;

    printf("the changed string is: %s,%s\n",a, a);
    return 0;
}

C: 字符数组中的空去掉

标签:hang   pre   near   stdio.h   turn   去掉   har   return   code   

原文地址:https://www.cnblogs.com/muahao/p/9107528.html

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