C++For each problem, list all references used or students consulted at the beginning of the .code as a comment Write a program that reverses a string with pointers. To do so, write a function that takes a C-string as an input parameters and reverses the string. The function should use two pointers, front and rear. The front pointer should initially reference the first characters in the string, and the rear pointer should initially reference the
OR
OR