This vector function removes an item from a vector.

a. remove_item
b. delete_item
c. erase
d. pop_back

d. pop_back

Computer Science & Information Technology

You might also like to view...

Which of the primaries in the HSB color model takes the form of a color wheel?

A. hue B. saturation C. brightness

Computer Science & Information Technology

What is wrong with the following statements?int compareInt (void* num1, void* num2);...BSTRoot = BST_Create (&compareInt);

A. The function should be declared as: int* compareInt (void* num1, void* num2); B. The function should be declared as: int compareInt (void num1, void num2); C. The call to the create function should be: BST_Create (*compareInt); D. The call to the create function should be: BST_Create (compareInt);

Computer Science & Information Technology