Combine two numbers into one. Example: 123 and 456 become 123456
- by Bei337
In C++, how do I combine (note: not add) two integers into one big integer?
For example:
int1 = 123;
int2 = 456;
Is there a function to take the two numbers and turn intCombined into 123456?