〃忝書γě渎ぐ 发表于 2020-4-27 15:49:44

C语言字符串中空格被当做什么?

#include <stdio.h>

int put(const char* string)
{
    int count = 0;
    while(*string != '\0')
    {
      putchar(*string++);
      count++;
    };
    return count;
}

int main()
{
    printf("字符串个数为:%d个\n",put("hello world "));//hello与world之间有个空格,这什么\0没截断,那么说明空格不被当做\0?
        return 0;
}

sunrise085 发表于 2020-4-27 15:49:45

空格和\0怎么可能会是一样的呢?
空格和'\0'都是字符
区别:空格的ASCII码是32,'\0'的ASCII码是0

杜若左 发表于 2020-4-27 15:59:20

字符串中的空格就是空格。ASCLL不同(去查表你就就知道了)并且你计算的是字符个数不是字符串的个数。{:10_256:}
页: [1]
查看完整版本: C语言字符串中空格被当做什么?