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.
A から Z までの C の各文字の整数値が何であるかを調べたいと思います。
文字列の各文字の値を調べるコードを教えていただければ幸いです。
ありがとう
char i; for (i = 'A'; i <= 'Z'; i++) printf("%c = %d\n", i, i);