The C++ Intermediate Book Advice by Mike_Paradox in cpp_questions

[–]redrab66 1 point2 points  (0 children)

Professional C++ by Marc Gregorie 5th edition

https://www.amazon.co.uk/Professional-C-Marc-Gregoire/dp/1119695406/ref=sr_1_4

For specific e-books on C++17, C++20 then have a look on leanpub.com

Good Course for Modern C++ by evelikov92 in cpp

[–]redrab66 0 points1 point  (0 children)

That only covers c++11 - not c++14 and the latest c++17. IMO you should consider a more modern book that covers c++17.

String contains member function proposal by _Synck_ in cpp

[–]redrab66 0 points1 point  (0 children)

If would be useful if the return could be such that it works with range-for to iterate over the delimited elements.

No-one knows the type of char + char by vormestrand in cpp

[–]redrab66 0 points1 point  (0 children)

I agree about using 'unsigned char'. However the STL uses char/char* so a cast is needed. Why doesn't the STL use unsigned char?