Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

Plain Field

Plain field is an ordinary field of a given type.

Syntax:

type-id var-id;        

Example of plain fields:

struct B
{
    // …
};

struct A
{
    int a;
    B b;
};

Both a and b fields of structure A are plain fields.