Is it possible to have a c++ program like this...
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
And have it's output on a webpage like this...
<html>
<head>
<title>C++</title>
</head>
<body>
<div src = "cpp.exe"></div>
</body>
</html>