To pass an object of class person to a function as a formal value parameter most efficiently you should use:
a) person p
b) const person p
c) person& p
d) const person& p
d) const person& p
Computer Science & Information Technology
You might also like to view...
The program segment
int counter = 1; do { printf("%i ", counter); } while (++counter <= 10); will ________. a) print the numbers 1 through 11 b) print the numbers 1 through 10 c) print the numbers 1 through 9 d) cause a syntax error
Computer Science & Information Technology
Encode (800) 555-0012 in ASCII, including punctuation.
What will be an ideal response?
Computer Science & Information Technology