面試題28——編碼實現字符串轉化爲數字,數字轉化爲字符串

字符串轉化爲數字:git int my_Atoi(const char*str) { assert(str!=NULL) if(str==NULL) { return NULL; } while(*str==' ') { str++; } if(*str=='+') { str++; } if(*str=='-') { printf("-"); str+
相關文章
相關標籤/搜索