0

最近cでコーディングを開始しましたが、コーディング中に、解決策が見つからないこのランタイムエラーが発生しました。このランタイムエラーが表示されるかscanf、顧客が見つかった場合は停止し、編集する内容を選択してから、新しい情報を入力します。

例:

  • 入力ID:322993
  • 見つかった
  • [1]を押してIDを編集します
  • 新しいIDを入力します
  • プログラムが動かなくなる

コードは次のとおりです。

void modifyCustomer(){
    int counter=0;
    long int tempID=0;
    flag found = false;
    fflush(stdin);
    printf("Enter Customer ID\n");
    scanf("%lld", &tempID);
    do{
        char option_str[200];
        int option = 0;
        char *not_valid;
        if(tempID == customers[counter].customerID){
            printf("Customer found!\n");
            found = true;
            do{
                fflush(stdin);
                printf("Choose what to modify:\n 1. ID\n 2. Name\n 3. Surname\n 4. Address\n 5. Mobile\nOption: ");
                scanf("%s", &option_str);
                option = strtol(option_str, &not_valid, 10);
                fflush(stdin);
                if (*not_valid != '\0') {
                    printf("%s is not valid.\n", not_valid);
                } else{
                    switch(option){
                    case 1:
                        printf("Enter new ID:\n");
                        scanf("%d\n", &customers[counter].customerID);
                        printf("Customer Modified Successfully!\n");
                        break;
                    case 2:
                        printf("Enter new Name:\n");
                        scanf("%s\n", &customers[counter].customerName);
                        printf("Customer Modified Successfully!\n");
                        break;
                    case 3:
                        printf("Enter new Surname:\n");
                        scanf("%s\n", &customers[counter].customerSurname);
                        printf("Customer Modified Successfully!\n");
                        break;
                    case 4:
                        printf("Enter new Address:\n");
                        scanf("%s\n", &customers[counter].customerAddress);
                        printf("Customer Modified Successfully!\n");
                        break;
                    case 5:
                        printf("Enter new Mobile:\n");
                        scanf("%lld\n", &customers[counter].customerMobile);
                        printf("Customer Modified Successfully!\n");
                        break;
                    default:
                        printf("You did not enter a valid Number. Please re-enter your Input \n");
                        break;
                    }
                }
            }while((option <1) || (option > 5));
        }
        else{
            counter++;
        }
    }while((found != true) && (counter < (custNum-1)));
    if (found == false)
        printf("Customer not found!\n");
}

なぜこれが起こるのですか?

4

1 に答える 1

1

%lldフォーマット指定子はlong long. を宣言したlong intので、ストレージよりも大きな型に書き込もうとしている可能性があります。この影響は未定義ですがsizeof(long int) != sizeof(long long)、プラットフォーム上では次のスタック変数を上書きする可能性が非常に高くなります。

tempIDこれは、 be 型に変更long intするか、使用する書式指定子を に変更することで修正できます%ld

于 2012-12-10T17:19:20.280 に答える