My c complier cannot find any NIDAQ functions although i #inculde"nidaq.h" command, but it works with #include "C:\program files\national instruments\NIDAQ\include folder. Why is this so?
Your help will be greatly appreciated.............
The quotes around the nidaq.h tell the compiler to search (in order) the current path, the command line path, the standard path. Angle brackets ( < and > ) around the nidaq.h the compiler will search (in order) the command line path, the standard path ( will not search the current path). If the path to the file is not in any of these search locations, you must specify the full path.