Name: Anonymous 2010-07-17 18:35
printf("%s\n",word);
for(i=0;i<11;i++)
{
trslt[i]=result[i+3];
rsltlower[i]=tolower(trslt[i]);
}
printf("%s\n",word);
Can anyone tell my why the first printf statement prints the value of word, but the second prints only a newline?
for(i=0;i<11;i++)
{
trslt[i]=result[i+3];
rsltlower[i]=tolower(trslt[i]);
}
printf("%s\n",word);
Can anyone tell my why the first printf statement prints the value of word, but the second prints only a newline?