Updated V for CPP developers (markdown)

Alexander Medvednikov 2022-04-13 00:10:39 +03:00
parent 6f0707ef48
commit cf132ade78

@ -93,7 +93,7 @@ std::ifstream f("path");
std::string text;
text.assign(std::istreambuf_iterator<char>(f), {});
if (!f)
std::cerr << "error reading from file\n";
std::cerr &lt;&lt; "error reading from file\n";
</pre>
</td>
<td valign="top">