C Language
Write a function called reverse() with this prototype:
void reverse(char dest[], char source[], int size);
Your function should copy all the elementsin the array sourceinto the array dest, except in reverse order. The number ofelements in the source array is give in the parameter size. Use afor loop to do the copying. Assume that dest is large enough tohold all of the elements. Please be thorough with commenting.
Expert Answer
An answer will be send to you shortly. . . . .