What is the freebie you get automatically with an array?

A. Nothing is free in C++.
B. A *(pointer) to the first element.
C. A *(reference) to the first element.
D. A *prototype ( ).

B

Computer Science & Information Technology

You might also like to view...

Which statement is false?

a) A recursive function is a function that calls itself either directly or indirectly through another function. b) A recursive function knows how to solve only one or more base cases. c) The recursion step executes after the original call to the function terminates. d) In order for the recursion to eventually terminate, each time the function calls itself with a slightly simpler version of the original problem, this sequence of smaller and smaller problems must eventually converge on a base case.

Computer Science & Information Technology

Using a preset value for the variable tested in a loop condition is a process called ____ the loop.

A. iterating B. priming C. presetting D. rebanding

Computer Science & Information Technology