Hi,
In the following code, as far as I can tell, I get identical strings, but strcmp does not return 0.
{
int controlLoop = 0, charLoop = 0, index = -1;
char stateSelect[STATESIZE] = { '\0' };
for ( controlLoop = 0; controlLoop < STATES; controlLoop++ )
{
if ( controlLoop % 3 == 0 )...