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.
wchar_t を使用すると、出力結果として数値が得られるのはなぜですか?
#include <iostream> using namespace std; int main() { wchar_t q; q = 'A'; cout << q; q = 'B'; cout << q; q = 'C'; cout << q; return 0; }
表示される「数字」は文字の値です。それが「数字」を得る理由です。文字を表示したい場合は、wcoutを使用できます