If I define a string as
and then proceed to tryCode:char found[100];
It should only occur if the seventh char in found is P, whose ascii value is 80, correct? Is there an easier way to do this?Code:if ((int) found[7]==80))
{
printf ("%s",found);
}

