Windows Movie Maker, iMovie, Final Cut Pro (x), QuickTime?
Answer:
D
Explanation:
As it's not fair if they all lose there privileges
Answer:.......
void clear(int *array, int length){
if (length == 0)return;
array[0] = 0;
clear(array + 1, length-1);
}
Explanation:
The void function accepts an integer array.
I would probably say B even though the other methods might work as well