Hi,
I am using C++ under Unix environment.
I had created 2 files xyz.h and xyz.cpp, I want to compile them on unix server.
How can I do it? After compilation i need to execute it.
I created a simple hello world program and it work fine.
for compile i used cc x.cpp => then a.out file is generated
then i used ./a.out => it execute successfully.
But while I am compiling my own created files,
I am receiving following error
"The #include file xyz.h is not found"
But i kept my 2 files under same dir only. How can I solve this.
Thanks in advance....
|
Go4Expert Member
|
|
| 5Apr2010,12:38 | #2 |
|
Quote:
Originally Posted by Poonamol or if u create ur header file then it must be stored in usr\include isn't it? |
|
Go4Expert Member
|
|
| 5Apr2010,13:35 | #3 |
|
Hi,
I had created my own file called xyz.h and its already in "include" folder. But header files included in xyz.h file are in diff location. But i receive this error for all header files. Please Help me out. |
|
Go4Expert Member
|
|
| 5Apr2010,13:41 | #4 |
|
Quote:
Originally Posted by Poonamol can u give me ur email id and i think u r now online so can we discussed on google chat becoz its easy for discussion rply fast |
|
Go4Expert Member
|
|
| 5Apr2010,13:45 | #5 |
|
Hi,
Let me know your gmail id, I'll add u in my messanger. |
|
Go4Expert Member
|
|
| 5Apr2010,13:52 | #6 |
|
ok
my id is jay303frengy@gmail.com. |
|
Go4Expert Member
|
|
| 5Apr2010,14:15 | #7 |
|
Hi,
I am using user define header files. If I put header file and .cpp file under same location then it is giving error for header files which is included in my .h (xyz.h) file. for example, xyz.h file content #include "pqr.h" #include"abc.h" . . etc header files of pqr.h and abc.h are giving error while compilation. Please help me ASAP. |

