[ETC] - Feedback
Feedback Clean Code Book by Robert Cecil Martin is a book that I personally like on the subject of making code that is easily understood.
Feedback Clean Code Book by Robert Cecil Martin is a book that I personally like on the subject of making code that is easily understood.
Bitwise Operators c++ reference:Bitwise Operators
What is reserve() reserve(10) reserves memory so you can e.g. push_back(10) elements without having a reallocation.
resize() void resize (size_type n); void resize (size_type n, const value_type& val);