_int8 データ型の書式指定子は何ですか?
「%hd」を使用していますが、スタックの破損に関するエラーが表示されます。ありがとう :)
これはコードのスニペットです:
signed _int8 answer;
printf("----Technology Quiz----\n\n");
printf("The IPad came out in which year?\n");
printf("Year: ");
scanf("%hd", &answer);
printf("\n\n");
printf("The answer you provided was: %hd\n\n", answer);