In the following function, where should the call to "free (root);" go?void _destroy (NODE* root){   if (root)  {       _destroy (root->left);       free (root->dataPtr);       _destroy (root->right);   }   return;}

A. Right before _destroy(root->right).
B. Right after _destroy(root->left).
C. Right after _destroy(root->right).
D. Right before the return statement.


Answer: C

Computer Science & Information Technology

You might also like to view...

What is the difference between continuous tone art and line art?

What will be an ideal response?

Computer Science & Information Technology

The ________ data type displays checked box

Fill in the blank(s) with correct word

Computer Science & Information Technology

Match the following terms to their meanings:

I. Theme colors II. Background style III. Theme font IV. Headings font V. Body font A. a set of coordinating colors applied to backgrounds, objects, and text B. determines the font applied to two types of slide text C. applied to slide titles D. applied to all text except slide titles E. a slide background fill variation that combines theme colors

Computer Science & Information Technology

A black hat hacker is also called a ___________

a. Thief b. Cracker c. Sneaker d. None of the above

Computer Science & Information Technology