<!DOCTYPE html>
<html>
<head>
<title>HTML code tag</title>
</head>
<body>
<p>1.) HTML code tag example</p>
<code>#include <stdio.h> <br />
void main() <br />
{ <br />
clrscr(); <br />
getch(); <br />
} <br />
</code>
<p>2.) HTML code tag with <pre> tag example</p>
<code>
<pre>
#include <stdio.h>
void main()
{
clrscr();
getch();
}
</pre>
</code>
</body>
</html>