June 2017
Intermediate to advanced
532 pages
12h 59m
English
We are going to implement two different custom string classes: lc_string and ci_string. The first class constructs lower case strings from any string input. The other class does not transform any string, but it can do case-insensitive string comparison:
#include <iostream> #include <algorithm> #include <string> using namespace std;
Read now
Unlock full access