Use the delete operator only on pointers that were

a. never used
b. not correctly initialized
c. created with the new operator
d. dereferenced inappropriately
e. None of these

c. created with the new operator

Computer Science & Information Technology

You might also like to view...

_________ are tables, forms, and other objects created from templates

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the output of the following code?num x = 1while x > 0  print x  x++endwhile

A. Prints an infinite set of numbers (1, 2, 3, 4, 5, 6, and so on). B. None; it does not run. C. Prints a specific set of numbers. D. Prints a random set of numbers.

Computer Science & Information Technology