I am having problems getting my procedure to read characters recursively to terminate. Can somebody help me here, I am not suppose to use arrays or lists. I have the following procedure:
void recursive()
{
char c;
cin>>c;
cout<<c;
recursive();
return;
}
I also need to print the characters backwards.