Given the following member function prototype and function call, why will the compiler return a message saying that setAge is not a member of person?

void setAge (int, int); // function prototype

person me;
me.setAge (50); // function call


the call to setAge contains an incorrect parameter list that does not match the prototype.

Computer Science & Information Technology

You might also like to view...

List all book titles.

What will be an ideal response?

Computer Science & Information Technology

If the formula =$B$3 * .062 is copied from cell B4 to B5, the result will be

a. =$B$4 * .062 b. =$B$3 * .062 c. =B5 * .062 d. an error

Computer Science & Information Technology

If the HTML form game has a text field named point in it, what is the proper way to set the text associated with point to 10?

a) game.point = "10" b) game.point.text = "10" c) game.point.caption = "10" d) game.point.value = "10"

Computer Science & Information Technology

A ___________ is a constrained version of a linked list in which nodes can be inserted only at the end of the list and deleted only from the start of the list.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology