Given the function prototype:

```double WildCard(char f[]);```
which answer correctly calls the WildCard function?
A. float z; char face[10]; z = WildCard(face);
B. double z; char face[10]; z = WildCard(face);
C. double z; string face; face = WildCard(z);
D. int z; int face[10]; face = WildCard(z);

B

Computer Science & Information Technology

You might also like to view...

What is the maximum number of ports that a Meridian System Logic-100 (MSL-100) supports?

a. 10,000. b. 30,000. c. 100,000. d. 300,000

Computer Science & Information Technology

Which file type preserves data and formatting as it was originally intended and makes it uneditable?

A) .pdf B) .docx C) .xml D) .xlsx

Computer Science & Information Technology