Answer:
=b2 b3-b4 or something close to that, I hope this helps ^^
Explanation:
2 ig
what are the phrases?
Answer:.......
void clear(int *array, int length){
if (length == 0)return;
array[0] = 0;
clear(array + 1, length-1);
}
The void function accepts an integer array.