So uh, i need some help with these functions..i gotta reverse, but i do not have the functions that can make it lowercase, or remove punctuation
#include <iostream.h>
#include <string.h>
char your_string[256];
char new_string[256];
void ReverseString();
void main()
{
cin.getline(your_string, 256);
ReverseString();
cout << ReverseString(your_string) << "\n";
}
void LowerCase(char String){
void ReverseString(){
int x = strlen(your_string);
x--;
for(int y = x; y >= 0; y--){
your_string[y] += your_string[y];
}
}