Device Monitoring Studio - Monitor, log and analyze data coming through PC ports and connections
Download Device Monitoring Studio 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.