which answer correctly calls the WildCard function?
Given the function prototype:
double WildCard(char f[]);
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. double z; char face[10]; z = WildCard(face);
Computer Science & Information Technology
You might also like to view...
Java has a way of officially hiding details of a class definition. To hide details, you mark them as _________.
(a) public (b) protected (c) private (d) all of the above
Computer Science & Information Technology
Explain what Photoshop Help is and how it is accessed.
What will be an ideal response?
Computer Science & Information Technology