<p>Basically:</p> <ul> <li>Drop source into /cgi-bin</li> <li>Set up a cron command to compile it into a .cgi: <br /> <pre style="font-family: monospace, 'Courier New'; padding: 1em; border: 1px dashed rgb(47, 111, 171); color: rgb(0, 0, 0); background-color: rgb(249, 249, 249); line-height: 1.3em; font-size: 13px;"> gcc /home/user/public_html/cgi-bin/mysourcefile.c -o /home/user/public_html/cgi-bin/outputfile.cgi</pre> </li> <li>Make sure the cron command is set to run sometime after you create it</li> <li>Add the cron job</li> <li>Let the cron run</li> <li>Enjoy your C/C++ cgi</li> </ul>