0
C: Printing unsigned/signed long long int using printf
Posted by Joys of Programming on in C/C++
If you want to use large integer numbers which cannot be represented using 4 bytes, you can use long long int instead of int. A long long int occupies 8 bytes. But you can make use of the sizeof operator to find the size of a long long int. Two types of integer are supported [...]