Suppose that a pointer called start points to the first node in a linked list, and each node is made from a Node struct having an info data member and a next data member. To access info in the first node, we can use the code:

A. ptr->info
B. ptr = ptr->info;
C. info->start
D. start->info

D

Computer Science & Information Technology

You might also like to view...

The Function Arguments dialog box contains a link, _____, that you should click to get help with the arguments.

A. Help B. F1 C. Function arguments D. Help on this function

Computer Science & Information Technology

One of the rules for creating a(n) ____________ is to use a combination of alphabetic characters, numeric digits and the underscore character.

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

Computer Science & Information Technology