Is void a data type in C?

前端 未结 3 623
既然无缘
既然无缘 2020-11-29 22:28

Is void a data type in the C programming language? If so, what type of values can it store? If we have int, float, char,

3条回答
  •  孤城傲影
    2020-11-29 22:51

    The C Standard says that void is an incomplete type that cannot be completed (unlike other incomplete types that can be completed). This means you cannot apply the sizeof operator to void, but you can have a pointer to an incomplete type.

提交回复
热议问题