is it efficient to store for example 64 bit number as 2 32 bit integers, on a computer that can handle only 32 bit, etc 128 as 4 32 bits, or is there a better alternative like storing the digits instead, or using strings.
if it is efficient, what is the method to print out the large number, it seems too complicated to do so, so would it be better to store it as digits/string instead?
would have to define an +/-/*/% operation, but just reading a large number and storing into an array of integers, or printing out an a large number from an array of integers seem to complicated, so is the data structure too complex?
how would u printf a large number represented as 2 32 bits on 32 bit pc? my solutions seem too complex so it seems the datasture isn't effective? idk