Hello guys,
I want to declare a void function such that, it will take a ifstream as input and two vectors as output, so I try to declare something as follow:
Is this valid? A "&" sign after vector<double> in a function declaration?
Actually is it valid to use vector<double> in a function declaration on the first hand? Certainly in elementary course I am taught to declare functions with variable types such as double, int, char etc. but is vector<double> a variable type such that I can use to declare functions in the same way?
oh thanks... i guess i must have made some other bugs somewhere else then, i cannot compile the file and i thought this might be the reason, so this turns out not the case... thanks i will have a check again