User profile: PBachmann

User info
User name:PBachmann
Name:Peter Bachmann
Location:North Carolina
History
Joined:
Number of posts:46
Latest posts:

What to call a function
What is a good simple name for this function? I want it to be somewhat short but something that tell...

Endless Do-While loop
Does this work? [code] #include <iostream> #include <fstream> #include <string> using namespace st...

pointer vs arrays
Assigning 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[]){...