I want to show the text below
#include <algorithm>
#include <iostream>
in my HTML file. I know that we have to use the HTML pre
tag, but when I do so, I can only see #include
.
In fact, I am not able to include the code on Stack Overflow; it is showing me only #include
.
Please help me.
You have to replace <
and >
(HTML reserved characters), with their respective HTML entities : <
and >
:
<pre>
#include <algorithm>
#include <iostream>
</pre>