I am trying to represent a very long number (i.e between 13 to 16 numerical digits) using C . long long
does not seem to work as I am always getting an overflow problem.
I would appreciate it if someone can help me with this problem, thank you.
long long number = 123654123654123LL;
printf("%ull", number);