a is a character array which contains integers 0-9
1) count=(count*10)+(a[i]-'0');
2) if(a[i]>'9')
{
ch=a[i];
printf("{Im executing:%c}",a[i]);
}
1)what does the first mean, can a character be computed and subtracted as a normal integer variable or it is a kind of special case.
2)what does the second statement mean?.Does it mean integer is compared with an integer
-----------Help please-----------