...
Code Block | ||
---|---|---|
| ||
#include <stdio.h> mytypedef_t x; /* ... */ printf("%llu", (unsigned long long) x); |
Consequently, there There is no guarantee that this code prints the correct value of x
, as x
may be too large to represent as an unsigned long long
.
...