...
| Code Block |
|---|
struct {
unsigned long long a:8;
} ull = {255};
|
References
- ISO/IEC 9899-1999 Section 6.7.2 Type specifiers
- MISRA 04 Rule 3.5
...
| Code Block |
|---|
struct {
unsigned long long a:8;
} ull = {255};
|