Perform the task specified by each of the following statements:

a) Write the function header for a function called exchange that takes two pointers to dou-
ble-precision, floating-point numbers x and y as parameters and does not return a value.
b) Write the function prototype without parameter names for the function in part (a).
c) Write two statements that each initialize the built-in array of chars named vowel with the string of vowels, "AEIOU".

```
a) void exchange(double* x, double* y)
b) void exchange(double*, double*);
c) char vowel[]{"AEIOU"};
char vowel[]{'A', 'E', 'I', 'O', 'U', '\0'};
```

Computer Science & Information Technology

You might also like to view...

What technologies and standards are used to develop Web services and how do they relate to each other?

What will be an ideal response?

Computer Science & Information Technology

A(n) ____-controlled while loop uses a bool variable to control the loop.

A. counter B. sentinel C. flag D. EOF

Computer Science & Information Technology