如何將一個整數變成字符串

#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
相關文章
相關標籤/搜索