Possible Solution:
Bitwise operations are very efficient and unexpressive, and doubling a number is a simple shift to the left i.e adding a zero on the right side.
Bitwise operations are very efficient and unexpressive, and doubling a number is a simple shift to the left i.e adding a zero on the right side.
int Double(int Number)
{
return (Number << 1);
}