In c++ (Linux, without using boost).
I have 2 64 bits variables (long long) (say x and y).
when I'm doing x*y the result may be 128 bits. How can I store it ? is there a variable that define a 128 bits ?
(I need a specific variable of 128 bits, because later in my program I may use the "/" operations on that 128 bit variable )
Thank's