In C, a pointer to _____ is a generic pointer that can be used to represent any data type during compilation or run time.

A. void
B. null
C. an ADT
D. the head of a list


Answer: A

Computer Science & Information Technology

You might also like to view...

C++11]: Given a built-in array of ints named values, which of the following statements would sort the array?

a. sort(values.begin(), values.end()); b. sort(values.array_begin(), values.array_end()); c. sort(begin(values), end(values)); d. sort(array_begin(values), array_end(values));

Computer Science & Information Technology

Using ________ allows you to minimize all but the active window

Fill in the blank(s) with correct word

Computer Science & Information Technology

Bit-level information is information at the level of actual 1s and 0s stored in memory or on the storage device, as opposed to going through the file system's interpretation.

a. true b. false

Computer Science & Information Technology

The return type of the peek() operation in the array-based and pointer-based implementations of a stack is

a. ItemType b. bool c. int d. assert

Computer Science & Information Technology