____ is equivalent to (*pointer).member.

A. *pointer.member
B. pointer>member
C. pointer->member
D. pointer@member


Answer: C

Computer Science & Information Technology

You might also like to view...

Analyze the following code.

``` #include using namespace std; class B { public: B() { }; int k; }; int main() { B b; cout << b.k << endl; return 0; } ``` a. The program displays 0. b. The program displays 1. c. The program displays unpredictable number. d. The program has a compile error because b.k cannot be accessed. e. The program has a runtime error because b.k does not have a value.

Computer Science & Information Technology

When using a Web browser, clicking a ________ will access another Web page, file, or section of the currently loaded Web page

A) sound file B) drop cap C) navigation bar D) hyperlink

Computer Science & Information Technology

The Standard Colors in the color palette have simple names, such as Red, Yellow, and Light Green.

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

Computer Science & Information Technology

IT projects are frequently evaluated using the business case approach since it is often difficult to put a dollar value on the benefit of a particular technology like e-mail.

a. true b. false

Computer Science & Information Technology