satellite03
IS-IT--Management
hi, i want to link with a downloaded library to my C program .....in the readme file of the manual i found they have specified a header .
so i wrote like below
#include "specified header.h"
also tried with...
#include<specified header.h>
but no successes .....at the compilation time i am getting message (in VC++) file or directory does not exist!!
why?
do i need to explicitly define the path?
i tried that also...
my program is in c:\pg\abc.cpp
foreign library in c:
and that specifed header is in c:\folder\specifed header.h
i tried with #include c:\\folder\\specifed header.h
.......still getting file /directory does not exist at the compilation time !!
so my question is how to link with a foreign library?
any advice or suggestion
so i wrote like below
#include "specified header.h"
also tried with...
#include<specified header.h>
but no successes .....at the compilation time i am getting message (in VC++) file or directory does not exist!!
why?
do i need to explicitly define the path?
i tried that also...
my program is in c:\pg\abc.cpp
foreign library in c:
and that specifed header is in c:\folder\specifed header.h
i tried with #include c:\\folder\\specifed header.h
.......still getting file /directory does not exist at the compilation time !!
so my question is how to link with a foreign library?
any advice or suggestion