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;
}
空格和\0怎么可能会是一样的呢?
空格和'\0'都是字符
区别:空格的ASCII码是32,'\0'的ASCII码是0 字符串中的空格就是空格。ASCLL不同(去查表你就就知道了)并且你计算的是字符个数不是字符串的个数。{:10_256:}
页:
[1]