insertion overloading in c 2b 2b

Solutions on MaxInterview for insertion overloading in c 2b 2b by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "insertion overloading in c 2b 2b"
Elora
21 Jan 2016
1//<<<<<<<<<<<<<<<<<<<<<<<<<<<insertion operator overloading<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Amir Ammar
2std::ostream& operator<<(std::ostream& out, const Bigint& i){
3  for(auto b = i.m_digits.begin(); b != i.m_digits.end(); ++b){
4    out<<(*b);
5  }
6  return (out);
7}
8