this function subtracts a given value for each element in an array. I
\ If the array is: hellohowareyou, and the value is 6
then result will be : 6 characters from each letter in the initial array
and the prototype of it is:
void minusFromArray(char arr[], int size, int value);
how do i convert each element in the array into ascii and subtract the values from those ascii characters?