24 A function that prints a string should have a parameter that’s a

a) nonconstant pointer to nonconstant data.
b) nonconstant pointer to constant data.
c) constant pointer to nonconstant data.
d) constant pointer to constant data.


b) nonconstant pointer to constant data.

Computer Science & Information Technology

You might also like to view...

Which of the following statements creates a multidimensional array with 3 rows, where the first row contains 1 element, the second row contains 4 elements and the final row contains 2 elements?

a. int[][] items = {{1, null, null, null}, {2, 3, 4, 5}, {6, 7, null, null}}; b. int[][] items = {{1}, {2, 3, 4, 5}, {6, 7}}; c. int[][] items = {{1}, {2, 3, 4, 5}, {6, 7}, {}); d. int[][] items = {{1}, {4}, {2}};

Computer Science & Information Technology

When using an external file in your program, it must be referenced by its corresponding __________ name.

a. external b. directory c. stream d. directory and external e. No name is required.

Computer Science & Information Technology

In a function, arguments are included inside the parentheses following the function name

Indicate whether the statement is true or false

Computer Science & Information Technology

The term asymptotic means the study of the function f as n becomes larger and larger without bound.

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

Computer Science & Information Technology