The declaration statement ____ declares milesAddr to be a pointer variable that can store the address of (that is, will point to) an integer variable.

A. int milesAddr&;
B. int milesAddr*;
C. int *milesAddr;
D. int &milesAddr;


Answer: C

Computer Science & Information Technology

You might also like to view...

The following code should display whether integer value is odd or even:

``` switch (value % 2) { case 0: Console.WriteLine("Even integer"); case 1: Console.WriteLine("Odd integer"); } ```

Computer Science & Information Technology

How many wired and/or wireless computers and mobile devices might a router be able to connect?

A. more than 200 B. more than 450 C. more than 500 D. There is no limit.

Computer Science & Information Technology

Describe what it means to “mount” a file system.

What will be an ideal response?

Computer Science & Information Technology

The default value of the size attribute for a text box is 25.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology