In function apart defined below, how many of the parameters are considered input parameters?

```
void
apart(double x, int *wholep, double *fracp)
{
*wholep = (int)x;
*fracp = x - *wholep;
}
```
a. 0
b. 1
c. 2
d. 3
e. all

b. 1

Computer Science & Information Technology

You might also like to view...

Which of the following is the simplest way to change the Based on Style?

A) Styles Gallery Options in the Styles group B) Style Inspector in the Styles group C) Modify Styles in the Styles group D) Manage Styles in the Styles group

Computer Science & Information Technology

A ____, also called an index, is a number that indicates the position of a particular item within an array.

A. superscript B. key C. placeholder D. subscript

Computer Science & Information Technology