为什么这里用字符数组可以,用字符指针就没输出?

发布于 2022-07-23 01:56:09 字数 4451 浏览 10 评论 5

从教课书考了一个程序, 只把变量BUF从 CHAR   BUF[1024]改为CHAR   *BUF, 为啥程序能运行,却无输出了呢:  先谢谢了:

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

main()
{
    char buf[1024];            《----------
    char *args[64];

    for (; {
        /*
         * Prompt for and read a command.
         */
        printf("Command: ";

        if (gets(buf) == NULL) {
            printf("n";
            exit(0);
        }

        /*
         * Split the string into arguments.
         */
        parse(buf, args);

        /*
         * Execute the command.
         */
        execute(args);
    }
}

/*
* parse--split the command in buf into
*         individual arguments.
*/
parse(buf, args)
char *buf;
char **args;
{
    while (*buf != NULL) {
        /*
         * Strip whitespace.  Use nulls, so
         * that the previous argument is terminated
         * automatically.
         */
        while ((*buf == ' ') || (*buf == 't'))
            *buf++ = NULL;

        /*
         * Save the argument.
         */
        *args++ = buf;

        /*
         * Skip over the argument.
         */
        while ((*buf != NULL) && (*buf != ' ') && (*buf != 't'))
            buf++;
    }

    *args = NULL;
}

/*
* execute--spawn a child process and execute
*           the program.
*/
execute(args)
char **args;
{
    int pid, status;

    /*
     * Get a child process.
     */
    if ((pid = fork()) < 0) {
        perror("fork";
        exit(1);

    }

    /*
     * The child executes the code inside the if.
     */
    if (pid == 0) {
        execvp(*args, args);
        perror(*args);
        exit(1);

      }

    /*
     * The parent executes the wait.
     */
    while (wait(&status) != pid)
        /* empty */ ;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

久光 2022-07-23 03:23:09

指针不分配空间,run-》core

我纯我任性 2022-07-23 03:20:31

偶也经常犯这样的错误

清风无影 2022-07-23 03:07:45

同意kenduest     不过huniu 下次贴代码请用其所长code功能这样大家会好看一点

墟烟 2022-07-23 02:11:36

非常感谢你的帮助,咱这就试试。

淡淡の花香 2022-07-23 01:59:28

原帖由 huniu 于 2006-4-26 14:40 发表
从教课书考了一个程序, 只把变量BUF从 CHAR   BUF[1024]改为CHAR   *BUF, 为啥程序能运行,却无输出了呢:  先谢谢了:

char buf[1024];  

改成 char *buf 是會發生一些錯誤,因為你沒有配置一塊內存空間 (memory) 供程式使用。

要這樣寫請使用 malloc() 先配置一塊 buffer 給程式使用。ex

  1. buf = (char *) malloc(sizeof(char) * 1024)

复制代码

記得最後要釋放該區塊。

  1. free(buf)

复制代码

==

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文