
March 24th, 2003, 03:27 PM
|
 |
Banned ;)
|
|
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
|
|
|
>> My executable (that I convert to cgi) needs some include files of C language.. Can this be true? If yes, which files are these?
Include files are handled by the preprocessor at compile time and the contents are included BEFORE compilation. So the executable does not need any C include files at runtime. Whoever told you that it needs include files is probably smoking some very interesting ceremonial chemicals.
On the other hand, your executable might require a Dynamic Link Library (DLL) to execute. However, most EXEs (at least those generated by older compilers) would attempt to load the DLLs up front, before running. So, if the DLL is not present, it would error out before running anything else. To be sure, can you run the executable from the command prompt instead of a browser, on your teacher's computer?
|