I need help fixing this I help getting errors
#include <cstdlib>
using namespace std;
void show_word (string);
int main ()
{
show_word ("hello");
system ("PAUSE");
return 0;
}
void show_word (char);
{
char InName;
cout << "Enter your name " << endl;
cin >> InName >> endl;
show_word ("hello");
show_word ( string InName);
}