Hi,
Is there someone out there who can help. I've written some simple functions, on the same page as the main code:
bool IsAVowel (char ch)
{
if(ch=='a')|| (ch=='e') || (ch=='i') || (ch=='o') || (ch==''u)
{
return true;
}
return false;
}
The compiler message gives 'linker error'
Why won't the main program use these. Sorry if this is a bit basic, but could really use some help with this.
jenco