long a[100];就这样定义
输出unsigned long long用%llu,而不是%d。
long a=11111111;char str[10]="\0";ltoa(a,str,10); //存入字符串数组str 中 第三个参数10 是说明是10进制 printf("%s\n",str);}