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);

Answer: D

Computer Science & Information Technology

You might also like to view...

Selecting a zoom size of greater than 100% will increase the zoom of a document

Indicate whether the statement is true or false

Computer Science & Information Technology

____ is a GUI design tool that allows the developer to create a user interface visually without having to spend a lot of time trying to position all the controls within the interface.

A. Scene Builder B. JavaFX C. CSS D. Swing

Computer Science & Information Technology