How do I take an input of 2 32 bit unsigned integers, multiply them and get the output as a 64 bit integer in C? Any help is appreciated! Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Convert the two integers to 64 bit first, then do a normal multiplication and return the value. |
|||
|
|
|
|||
|
|
|
Just convert one of the two integers to
|
|||
|
|