The following table lists the data mapping formats used for C and C++ fundamental data types.
| Type | Mapping |
|---|---|
| bool char signed char unsigned char |
Single-Byte Character |
| wchar_t | Double-Byte Character |
| short int unsigned short int |
Two-Byte Integer |
| int unsigned int long int unsigned long int |
Four-Byte Integer |
| long long | Eight-Byte Integer |
| float | Four-Byte Floating Point |
| double | Eight-Byte Floating Point |
| long double | Ten-Byte Floating Point in Sixteen-Byte Fields |
![]()
Mapping of Compound Data
Types