Code-func
This function is used to return a numeric code for the first character in input string.
int Code(string str)
str
Return a numeric code.
int dd=code(abc); dd=; //Should return 65 here, the numeric code of 'A'
Char