Home > Backend Development > C++ > body text

Why is `sizeof(void)` invalid in C, but evaluates to 1 in GCC?

Linda Hamilton
Release: 2024-11-16 12:26:03
Original
682 people have browsed it

Why is `sizeof(void)` invalid in C, but evaluates to 1 in GCC?

Understanding the Size of Void

In C programming, the keyword void signifies a data type that has no size. This peculiar property makes it ineligible for variable declarations or memory allocation tasks.

Compilation Error: Void Pointer Allocation

The code snippet you provided:

void *p = malloc(sizeof(void));
Copy after login

would result in a compilation error because sizeof(void) is an invalid expression in C. The type void carries no size information, rendering this operation undefined and therefore rejected by the compiler.

Sizeof(void) in GCC: An Exception

Surprisingly, the sizeof(void) expression compiles in the GNU C compiler (GCC). It evaluates to 1, indicating a single byte of memory. However, this behavior is not standard and varies across different compilers and architectures.

Pointer Increment with Void Pointer

Your question about incrementing p with p raises an interesting concept. Since void has no size, the p operation becomes meaningless. The pointer p is not pointing to any specific data type or value, so incrementing it would not have any effect on its value.

In summary, void in C is a data type without size and cannot be used for memory allocation or variable declarations. The sizeof(void) expression is generally invalid, but may behave differently in specific compilers like GCC. Due to its lack of size, attempting to increment a void pointer with p has no meaningful outcome.

The above is the detailed content of Why is `sizeof(void)` invalid in C, but evaluates to 1 in GCC?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template