我希望我能正确解释这一点。但我需要我的 C++ 程序来显示 HTML 网站。我现在拥有的代码只显示文本。我怎样才能使它像网站一样实际显示(使用 HTML 代码)?我将使用上传到服务器的 .exe 文件来显示页面。
#include <iostream>
using namespace std;
int main()
{
cout << "Content-type: text/plain\n\n";
cout << "<h2>My first CGI program</h2>\n";
cout << "<h1>This is a test</h1>\n";
cout << "<h3>Why is this not working</h3>\n";
return 0;
}