如何将一个整数变成字符串

#include <stdio.h> #include <string.h> #define MAX_SIZE 1024 char *number_change_string(int num,char *src) {      int i = 0;     int len;     char temp;       while(num != 0)     {         src[i] = nu
相关文章
相关标签/搜索