The programming thing has a lot of tricks and as a programmer, I like them very very much. The latest trick that i have come across is converting a char digit to its integer value. As you know, if you write something like this: char num[11] = “0123456789″; int s = (int)num[0]; printf(“%d\n”,s); It will [...]