Hey thanks. Here is what it ended up being. The compiler is picky so I had to put ++ operator in a different place. It works though.

Code:
const char *hello="hello";

PrintStr(hello);

void PrintStr(const char *iChar)
{
	uns8 x=0;
	while(iChar[x]!='\0')
	{
		PrintChar(iChar[x++]);
	}
}:w