WebでCGIを使用するときはPerl/CGIの組み合わせが一般的だが、C++/CGIも可能だ。なにより、C++の方が実効速度が速い。以下に、CGIから渡されたデータを取得する方法を示す。 POSTメソッドをC言語で受け取る場合 1: #include<iostream> 2: 3: using namespace std; 4: 5: int main( int argc, char **argv ) 6: { 7: cout << "Content-Type: text/html" << endl << endl; 8: cout << "<html>" << endl 9: << "<body>" << endl 10: << "This is C++ Program<br>" << endl; 11: 12: string len = getenv( "CONTENT_LE