Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 352 Bytes

sizeofDereferencedVoidPointer.md

File metadata and controls

11 lines (6 loc) · 352 Bytes

Pattern: Use of sizeof(void)

Issue: -

Description

The behaviour of sizeof(void) is not covered by the ISO C standard. A value for sizeof(void) is defined only as part of a GNU C extension, which defines sizeof(void) to be 1.

Further Reading