Arrays, tables and void functions... help...

Jul 19, 2018 at 11:54pm
Can anyone figure out how to read the next value from an input file and store it in array table while using a void function that is not letting you do it the
1
2
3
4
while (inData >> numbers[index])
			{
				index++;
			}

way because it says that file is not declared or exist due to the fact that it's in int main and that I have to use void.

Someone, please help.
Last edited on Jul 20, 2018 at 12:11am
Jul 20, 2018 at 12:34am
void functions can take parameters.

void foo(ifstream &ifs) //this is a void function that has a file variable passed into it.

you probably want

void foo(ifstream &ifs, vector<int>& numbers)

Last edited on Jul 20, 2018 at 12:35am
Topic archived. No new replies allowed.