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,
void
int
float
char
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.
sizeof