Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
long long を C の文字列に変換したいと思います。
long long x = 999;
x を文字列に変換したいと思います。どうすればそれを行うことができますか?
ありがとう。
long long x = 999; char str[256]; sprintf(str, "%lld", x); printf("%s\n", str);