Subj : Unable to open include file 'stdio.h' To : borland.public.cpp.borlandcpp From : Brian Simms Date : Mon Apr 25 2005 09:56 pm Hi everybody! I am just learning C and have a problem with my first simple (!) program! I was wondering if someone could help me find a solution. Here is the source code for you to analyse and see where I have screwed up: #include int main() { printf("Hello World\n"); return 0; } I am using the free version of Borlands C\C++ compiler (version 5.5) and have created the "bcc32.cfg" file (it is a text file created in Notepad, is that correct or did I screw that up?) also I have created an "ilink32.cfg" file (again as a text file via Notepad) These are both stored in the following Directory: C:\Borlands\BCC55\Bin (as per the instructions on Borlands website). The above program is stored in the Directory "C:\mycodes" with the following filename: hello.c I open the Command prompt and change to the directory: C:\mycodes. At the prompt (which now is "C:\mycodes>" I type in "bcc32 hello.c" after which I get the following message: Borland C++ 5.5.1 for Win32 Copyright 1993, 2000 Borland hello.c: Error E2209 hello.c 1: Unable to open include file 'stdio.h' Warning W8065 hello.c 4: Call to function 'printf' with no prototype in function main *** 1 errors in Compile *** Any ideas as to what I am doing wrong? I thank you all in advance for any help you offer! TIA! Brian .