I have writtena function to display string of characters using pointer but it shows error. can anybody what is the error in it?
void WriteString(char *Buff)
{
int nStringLength;
int nLoop;
nStringLength = strlen(Buff);
for(nLoop…