C compiling

I recently loaded SuSE on my intel comp.
I am presently taking a walk down memory lane from my days at UofT.
I was fiddling round with cc and the gcc compilers.
I wrote a basic basic basic program .
I tried to compile it as I remember doing in Uni. The problem is that it can't find the header file that I included in the program (studio.h). The compiler spits out the error message "studio.h: No such file or directory.

Where is this file located or do I have to load it from elsewhere?

Thanks.

PS:I did a search for studio.h and found no references.

:cool:

It sounds like you may need to download the GCC library!?

did you use the include "" syntax
or the include <> syntax...
remember they have different meaning ...

if it is C lib. , does it should be <stdio.h> not <studio.h> ?
:confused:

That's right, I didn't even look at that. Should be <stdio.h>

ie. standard input/output... don't know where you got the U.

Yes, its include <stdio.h>
for all the standard C libraries !!

<> makes the compiler to look in the include directory for the header file. "" searches the current directory !!