开发者

what is "{0}" in C?

What does char buf[MAXDATASIZE] = { 0 };'s {0} means?

tried to print it out but开发者_开发问答 it print nothing.

#include <stdio.h>

int main(void)
{
        char buf[100] = { 0 };
        printf("%s",buf);
        return 0;
}


This is just an initializer list for an array. So it's very like the normal syntax:

char buf[5] = { 1, 2, 3, 4, 5 };

However, the C standard states that if you don't provide enough elements in your initializer list, it will default-initialize the rest of them. So in your code, all elements of buf will end up initialized to 0.

printf doesn't display anything because buf is effectively a zero-length string.


You are assigning an array to the buffer.

In the particular case of string, usually, the character whose ASCII value is 0 terminates the string.

For example, if you wanted to put a string that reads 'Hello world' inside the string you could have done

char buf[100] = {'H', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', 0};

or

char buf[100] = "Hello world";

Anyway, your code prints nothing because you are trying to print a string with length zero, that is an empty string.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜