Thursday, July 30, 2009

What should i do the program run on turbo c is not including stdio &other file?

1) In your code you must #include the headers you need.


#include %26lt;stdio.h%26gt;





2)In your IDE and/or the cmd line environment, you must have the directory path to the system header files in the INCLUDE path. Do a SET command and it should have that directory in there in the INCLUDE environment variable.





3) you must pass all of the correct libraries in to the linker.


4) you must include the path to the system libraries in your LIB path. Do a SET command and it should have that directory in the LIB environment variable.

dracaena

No comments:

Post a Comment