Total of vectors ProblemWhen I run your code with line 43 looking like: [code] temp += moneysaved[y]; [/code] It w...
Total of vectors ProblemAs mentioned in the last post, you need to change [i] on line 43 to [y]. This is because you are us...
Pointers and functionsYou could return charPointer and assign the output of the function to myString, but more importantly...
breath first searchGoogle and wikipedia are amazing sometimes. http://en.wikipedia.org/wiki/Breadth-first_search#Pse...
Vectorsfor (x=='n' || x=='N') should be: if (x=='n' || x=='N') AND for (int y=0; y=<moneysaved....