Hello, in 'cpp' code if I wish to include a header file its .H...ie
//function definitions are located in function.h . The implementation is loaded in functions.cpp, however some of the functions take parameters created in main. Therefore rather than including the following:
#include <iostream>
...
function.h
function.cpp
...
int main()...
that works but isnt the corect / best way is it? But when I create a link in the .h to the .cpp and vice versa it errors...any ideas?
Is the quote way the only way to fix it?
Cheers