What to call a functionWhat is a good simple name for this function? I want it to be somewhat short but something that tell...
Endless Do-While loopDoes this work? [code] #include <iostream> #include <fstream> #include <string> using namespace st...
pointer vs arraysAssigning my_array to a pointer has the pointer hold the address to the first element in the array -...
grade and age [code] #include <iostream> using namespace std; void whichGrade(int &age){ cout << "Enter age: ";...
finding smallest number to no avail[code] #include <iostream> using namespace std; const int size = 10; int findSmallest(int ray[]){...