C:正在打印不正确的字符,怀疑是mem。问题

时间:2016-11-01 02:10:00

标签: c stdin fgets scanf

我正在遇到一些有趣的事情,那些奇怪的角色正在打印而不是我期待的。它没有早点这样做,但我开始玩fgets和sscanf,现在它不会恢复原样。我猜测我在某处损坏了内存,或者在stdin缓冲区中留下了什么,但不是很确定。有什么想法吗?

我期待的是:

***************************************************************************
*                                                                         *
*                                                                         *
*    1) What char for border?                                             *
*    2) Add question                                                      *
*    3) Remove Question                                                   *
*    4) Print last answers                                                *
*    5) Exit                                                              *
*                                                                         *
*                                                                         *
*                                                                         *
*                                                                         *
***************************************************************************

什么是实际打印(正如您所看到的,它打印出时髦且消耗空间):

***************************************************************************
*                                                                         *
*                                                                         *
*    1) What char for border?                                             *
*    2) Add question                                                      *
*    3) Remove Question                                                   *
*    4) Print last answers                                                *
*    5) Exit                                                              *
*                                                                         *
*    ÿ                                                                   *
*                                                                         *
*                                                                         *
***************************************************************************

这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct f_in{
    char outline;
    int lines;
    int rows;
    int num_args;
} F_IN;

typedef struct args_in {
    char in_string[20];
    int t_format;
} ARGS_IN;

void printInterface(char argQs[5][50], char argChar);

int main(int argv, char** argc){
    char defaultQuestions[5][50] = { { "1) What char for border?" }
        , { "2) Add question" }
        , { "3) Remove Question" }
        , { "4) Print last answers" }
    , { "5) Exit" } };
    int commandEntry, exitFlag, i;
    char borderChar = '*', addQ[50], userInp[10];

    exitFlag = 1;

    while (exitFlag){
        printInterface(defaultQuestions, borderChar);

        // GET INITIAL INPUT FROM USER
        printf("Enter the integer value for the command you wish to select:  ");
        fgets(userInp, sizeof(userInp), stdin);
        // VERIFY INPUT IS VALID
        sscanf(userInp, "%d", &commandEntry);
        printf("\nYou selected: %s\n", defaultQuestions[commandEntry - 1]);

        if (commandEntry == 1){
            printf("Please enter the character you wish to be the border:  ");
            scanf("\n%c", &borderChar);
        }
        else if (commandEntry == 2){
            printf("What question would you like to add? (only enter 50 char max)\n");
            fgets(addQ, 50, stdin);
            printf("This was your question: %s", addQ);
        }
        else if (commandEntry == 5){
            printf("Goodbye!\n");
            exitFlag = 0;
        }
    }
    return 0;

}

void printInterface(char argQs[5][50], char argChar){
    int i, j;
    int lineCnt = 13;
    int borderLen = 75;

    for (i = 0; i<100; i++){
        printf("\n");
    }

    for (i = 0; i<lineCnt; i++){

        if (i == 0 || i == lineCnt - 1){
            for (j = 0; j<borderLen; j++){
                printf("%c", argChar);
            }
            printf("\n");
        }

        else if (i >= 3 && i <= 10){
            printf("%c    %s", argChar, argQs[i - 3]);
            for (j = 0; j < ((borderLen - strlen(argQs[i - 3]))-6); j++){
                printf(" ");
            }
            printf("%c\n", argChar);
        }

        else{
            for (j = 0; j<borderLen; j++){
                if (j == 0){
                    printf("%c", argChar);
                }
                else if (j == (borderLen - 1)){
                    printf("%c\n", argChar);
                }
                else{
                    printf(" ");
                }
            }
        }
    }

    for (i = 0; i<10; i++){
        printf("\n");
    }

}

1 个答案:

答案 0 :(得分:3)

在调试时诀窍总是尝试检查使用第一个/最后一个索引发生的事情。如果您办理登机手续:

else if (i >= 3 && i <= 10){
    printf("%c    %s", argChar, argQs[i - 3]);
    for (j = 0; j < ((borderLen - strlen(argQs[i - 3]))-6); j++){
        printf(" ");
    }
    printf("%c\n", argChar);
}

argChar有5个条目,但您在argQs[i - 3])(条件为i=10时)尝试访问if (i >= 3 && i <= 10)中的8个条目。在C中你不会得到一个花哨的 IndexOutOfRange 错误,你基本上会访问BASE_ADDR + 8位置的另一个内存注册表。

在C中,术语数组和指针几乎可以互换,因为它们都指定了内存块的地址。由于数组基本上是连续内存块,因此数组的名称是指向第一个元素的指针。示例:array[25]相当于*(array + 25)

希望有所帮助。