int型指针转化为char型指针问题 - ITeye问答
int型指针转化为char型指针问题3 string intToString(const int a){ int b = a; int *c = &b; char *t; t = (char*)c; cout<<t<<endl; std::...
c语言中char类型转int类型
c语言中char类型转int类型 2013-10-17 | 阅:4959 转:3 | 分享 前言 在九度oj做acm的时候,经常会遇到了char类型和int类型相互转化的问题,这里进行一下总结。...