Message-Id: <199805090139.VAA07918@hme0.mailrouter01.sprint.ca> Reply-To: From: "Dmitri Ivanenko" To: , "IBM News" , Subject: Re: compile problems... Date: Fri, 8 May 1998 21:24:01 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Precedence: bulk ---------- > From: Dmitri Ivanenko > To: IBM News ; djgpp AT delorie DOT com > Subject: Re: compile problems... > Date: Friday, May 08, 1998 9:19 PM > > > I tried to run the hallo.c program. It tells me that there is no include > > path to find studio.h > > > > I'm new to programming and am ntr sure what studio.h even does. I just > > wanted to see if the compiler worked. I deleted the part that says > include > > studio.h and it compiles but stops again. It says that tehre is a > problem > > with Id.exe can't open -lgcc. Invalid file format. > > > > What's the problem?? > > > > Thanks for any help!! > > > > 1. You need that #include statement > a. #include "stdio.h" (if it's in the same directory) > or > b.#include ( if it's not located in the same directory) > 2. Stdio.h is a header file that has all the references to functions that > you can use in your program. Those references are to the library files that > include the functions themselves. > 3. For curiousity, view file in any text editor and you will see that it's > not something to be affraid of. > >