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.
私はCをいじっていて、この小さな問題に遭遇しました。私の出力からわかるように、この文字は「╠」になっています。
#include <stdio.h> int main(void) { char c; printf("Do you want to be X's or O's?\n"); scanf_s("%c", &c); printf("You chose %c\n", c); }
プログラム出力を見る