定义成char型的变量,再给它赋值,直接输出就OK。。。。printf的话,用%c。。。。如果用cout直接输出就成。。
字符的数值就是assii值,所以无需转换。
如 char c = 49;和char c='1'; 的意思是一样的
atoi
atof
ftoa
itoa (非C标准函数)
sprintf
atio()
example:
char a='9';
temp[2];
temp[0]=a;temp[1]='\0';
b=atio(temp);
char c=49;
printf("%c",c); //或者:printf("%c\n", char(49));
补充:
if(buf[i]!=buf[strlen(buf)-1-i])