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.
次のコードがあります。
char temp[32] = ""; sprintf(temp, "%02s", "A");
しかし、次のような警告があります: 、Warning 566: Inconsistent or redundant format char 's'コードを次のように変更しました: sprintf(temp, "%2s", "A");、警告が消えました。違いは何ですか?
Warning 566: Inconsistent or redundant format char 's'
sprintf(temp, "%2s", "A");