What format specifier to use for printing "unsigned long long" in C with getting truncated values on
- by Abhijeet
typedef unsigned long long IMSI;
IMSI imsi;
when i am trying to print this using %llu as a format specifier, i am getting a rather unrelated value.
What can i do to remove this problem?