Day 10/100 100 Days of Code
I managed to find the root of the problem. The collection structure was not being created properly due to the following code:
size_t html_len = sizeof(html) - 1;
The size was not correct and I had to change it with the following:
std::string getHTML...
digitalcreations.hashnode.dev1 min read