![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Compiling with Dll in HP Ux | dwgi32 | High Level Programming | 2 | 11-13-2007 07:43 PM |
| re-compiling | aViking | UNIX for Advanced & Expert Users | 5 | 03-21-2006 07:44 AM |
| compiling with aix 5.1 | n-may | AIX | 1 | 05-24-2004 11:17 PM |
| compiling | Blunt_Killer | High Level Programming | 1 | 09-28-2001 08:10 PM |
| compiling qt | nydel | UNIX for Dummies Questions & Answers | 2 | 08-03-2001 05:14 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
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. |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
It sounds like you may need to download the GCC library!?
|
|
#3
|
|||
|
|||
|
did you use the include "" syntax
or the include <> syntax... remember they have different meaning ...
__________________
Vineeth |
|
#4
|
|||
|
|||
|
if it is C lib. , does it should be <stdio.h> not <studio.h> ?
__________________
:rolleyes: |
|
#5
|
||||
|
||||
|
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. |
|
#6
|
|||
|
|||
|
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 !!
__________________
Vineeth Last edited by vin_vinu; 07-18-2001 at 06:38 AM. |
|||
| Google The UNIX and Linux Forums |