Hey i have a few random questions that i can't seem to get my head around at the moment.
Any help would be appreciated
1) What criteria would you apply in deciding which of the three forms of loop
to use in a program?
2) What does this function prototype mean?
char aFunction (int x, float & y);
3) How is private data made accessible outside of the class?
(is it friends?)
4)
int n1 = 10;
while (n1 < 5)
{
n1++;
}
int n2 = 10;
do
{
n2++;
} while (n2 < 5);
does n1 and n2 just equal 10?
regards
:(