我想把一个long long转换成c中的字符串。
long long x = 999;
我想把x转换成字符串。我该怎么做呢?
谢谢。
long long x = 999;
char str[256];
sprintf(str, "%lld", x);
printf("%sn", str);