3

到目前为止,我已经能够通过使用 Visual C++ 中的调试命令正确地查看我的 C 代码的输出。但是,当脚本依赖于主函数中的参数(例如/ argc、、argv)时,调试器似乎会忽略这两个参数并将它们视为未初始化。

例如,在以下代码中,输出始终为printf("Usage: find pattern\n");.

#include <stdio.h>
#include <string.h>
#define MAXLINE 1000

int getline(char *line, int max);

/* find: print lines that match pattern from 1st arg */
main(int argc, char *argv[])
{
    char line[MAXLINE];
    int found = 0;

    if (argc != 2)
        printf("Usage: find pattern\n");
    else
        while (getline(line, MAXLINE) > 0)
            if (strstr(line, argv[1]) != NULL) {
                printf("%s", line);
                found++;
            }
    system("Pause");
    return found;
}

int getline(char *s, int lim)
{
    int c;
    char *i = s;

    while (--lim > 0 && (c=getchar()) != EOF && c != '\n')
        *s++ = c;
    if (c == '\n')
        *s++ = c;
    *s = '\0';
    return s-i;
}

如何运行代码以便使用 argc 和 argv?我是否应该使用 Visual C++ 以外的 IDE?

4

0 回答 0