C/C++笔试面试常见题目2
第一、转int到str//使用函数sprintf将整形数字格式化 char* int2str(int nSrc,char*sDest) { if(sDest == NULL) return NULL; char nSrc_arry[64] = {0}; sprintf(nSrc_arry,"%d",nSrc); memcpy(sDest,nSrc_arry,s