What operation does the following function implement?BST_TREE* aBST_Operation (int (*compare) (void* argu1, void* argu2)){   BST_TREE* tree;   tree = (BST_TREE*) malloc (sizeof (BST_TREE));   if (tree)   {      tree->root = NULL;      tree->count = 0;      tree->compare = compare;   } // if   return tree;}

A. create
B. destroy
C. empty
D. full


Answer: A

Computer Science & Information Technology

You might also like to view...

The strict DTD is best used for older documents that contain deprecated features.

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

Computer Science & Information Technology

What should you open if you want to add snap-ins to create a custom management console?

A. ODBC B. Services C. MMC D. PowerShell

Computer Science & Information Technology

The ____ symbol always precedes the anchor name when it is used in a link.

A. # B. $ C. % D. &

Computer Science & Information Technology

The Class A network is defined by what subnet mask?

A. 255.0.0.0 B. 255.255.0.0 C. 255.255.255.0 D. 255.255.255.255

Computer Science & Information Technology