can someone explain me how's the argument passed in the 1st parameterized constructor working?
public:
//Constructors
Bigint();
Bigint(long long); // 1st parameterized constructor
Bigint(std::string); // 2nd parameterized constructor.
can someone explain me how's the argument passed in the 1st parameterized constructor working?
public:
//Constructors
Bigint();
Bigint(long long); // 1st parameterized constructor
Bigint(std::string); // 2nd parameterized constructor.
long long
is a type, just like int
or long
. But the difference is that it's at least 64 bits wide.