【課題1−20 scanf関数】 次のプログラムはキーボードからの入力を受け取るものである.実行結果A,Bの値を求めよ. #include int main(void) { char c; int n; printf("Type A, then press Enter."); scanf("%c", &c); // cに1文字入力 printf("Input data as DEC : %d¥n", c); // cを10進数表示 printf("¥nType A, then press Enter."); scanf("%x", &n); // nに16進整数を入力 printf("Input data as DEC : %d¥n", n); // nを10進数表示 return 0; } 【実行結果】 Type A, then press Enter.A Input data as DEC : 「 A 」 Type A, then press Enter.A Input data as DEC : 「 B 」 【解説とヒント】 同じキーを押下した場合でも,変換仕様により格納されるデータは異なる.