Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.59 KB

offsetof-macro.md

File metadata and controls

58 lines (40 loc) · 1.59 KB
description title ms.date api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: offsetof Macro
offsetof Macro
11/04/2016
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
DLLExport
apiref
offsetof
structure members, offset
offsetof macro
f3b4eb16-a882-4d38-afc9-eebd976a7352

offsetof Macro

Retrieves the offset of a member from the beginning of its parent structure.

Syntax

size_t offsetof(
   structName,
   memberName
);

Parameters

structName
Name of the parent data structure.

memberName
Name of the member in the parent data structure for which to determine the offset.

Return value

offsetof returns the offset in bytes of the specified member from the beginning of its parent data structure. It's undefined for bit fields.

Remarks

The offsetof macro returns the offset in bytes of memberName from the beginning of the structure specified by structName as a value of type size_t. You can specify types with the struct keyword.

Note

offsetof is not a function and cannot be described using a C prototype.

Requirements

Routine Required header
offsetof <stddef.h>

For more compatibility information, see Compatibility.

Libraries

All versions of the C run-time libraries.

See also

Memory allocation