hi I have 2 question the first one is the one in the title and the other one is here: does unsigned long long is the biggest integer (can hold the biggest amount of characters)? cause I need an int that can hold few millions characters (digits) is this possible? I'm coding in C. and this is connecting me to the other question how can I display the amount of digits on the screen? is it need to be like this?:
printf("%d", intName.length)
thanks every one!!
you can also use
But you need to inlcude inttypes.h library that gives you types such as int32_t, int64_t, uint64_t.