-2

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. 
Taimoor Mirza
  • 1,093
  • 7
  • 19

1 Answers1

0

long long is a type, just like int or long. But the difference is that it's at least 64 bits wide.

See http://en.cppreference.com/w/cpp/language/types.

Emil Laine
  • 41,598
  • 9
  • 101
  • 157