Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFcccc
#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.

...