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...

Input, process, output, and storage are the functions that compose the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

In Excel, where does the underlying formula display?

A) It displays in the cell. B) It displays in the formula bar. C) It does not display anywhere. D) It displays on the status bar.

Computer Science & Information Technology

To quickly open the Property Sheet for a control in Layout view, press the F4 key on the keyboard. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

If you no longer use certain software, you can remove, or ____, the unwanted programs.

A. unload B. patch C. unboot D. uninstall

Computer Science & Information Technology