I fixed all of the errors in the code that I wrote, however, I am now getting errors in this document called "stl_algobase.h " which I don't even know what it is.
they follow the form of
instantiated from `_OutputIterato r std::_copy_aux2 (_InputIterator ,_InputIterator ,_OutputIterato r,_false_type)[with_InputIteat or=char[*][10],_OutputIterato r=int]'
I think it is trying to tell me that I am trying to output an array of characters like integers, but I don't know how to fix it.
Here is the code that I think is causing the problem:
they follow the form of
instantiated from `_OutputIterato r std::_copy_aux2 (_InputIterator ,_InputIterator ,_OutputIterato r,_false_type)[with_InputIteat or=char[*][10],_OutputIterato r=int]'
I think it is trying to tell me that I am trying to output an array of characters like integers, but I don't know how to fix it.
Here is the code that I think is causing the problem:
Code:
void print(char temporaryArray[][10], int MAX_SIZE)
{
for(int local = 0; local < MAX_SIZE; local++)
{
for( int loop = 0; loop <=9; loop++)
{
cout<< temporaryArray[local][loop];
}
cout<<endl;
}
}
Comment