What is the output of the following code?int *p;int x;x = 12;p = &x;cout << x << ", ";*p = 81;cout << *p << endl;

A. 12, 12
B. 12, 81
C. 81, 12
D. 81, 81


Answer: B

Computer Science & Information Technology

You might also like to view...

Suppose that the price of an item is stored as an integer (number of cents) within a data member of a class. When the client wants to set the price, however, a setPrice function is called which passes a number in as dollars and cents (a float), then it is converted and stored as cents by the setPrice function. This is an example of:

A. a const function B. a const reference function C. an accessor function D. data translation

Computer Science & Information Technology

A table inserted into a cell of an existing table is referred to as a(n) ________ table

A) embedded B) nested C) table within a D) linked

Computer Science & Information Technology

MySQL assigns _____________________ to specify which actions and operations a user can perform with a table or database.

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

Computer Science & Information Technology

Generally, ____________________ means to keep the devices current (software and firmware), use physical security precautions, and apply internal security options.

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

Computer Science & Information Technology