Hai friends....
In C
for 97=A character , 65=a charcter....can u tell what is the number for "space" character...
Davidson
Why do you even want to know that? A space character is simply this: ' '.
Any numerical value is bound to be valid only for a certain character encoding
such as ASCII or EBCDIC; if you want to sprinkle those numerical values all
over in your code it is doomed to be tightly coupled with that one single
character encoding scheme. Better stay far away from such bad practices.
kind regards,
Jos