Datasheet
Structure and Union types
59
C.3.3. Structure and Union types
struct
{
int PointID;
double Temperature;
double ScalingFactor;
double Offset;
char Name[32];
} TemperaturePoint[10];
union
{
long a;
struct
{
int b1;
int b2;
} b;
} longintunion;
C.4. Control Flow
C.5. Functions and Program Structure
C.6. The C preprocessor
C.7. dsPIC-specific identifiers