1

我使用一个函数来显示由指针指向的内存块内容。但是没有得到想要的输出,我是新手,如果我错了,请纠正我。当我输入 size =3, element = 1,2,3 时,我只得到 output = 1 。

这是代码:

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

void merge(int **arr1);

int main(void) {
    int size1;
    printf("Give me the size of first array\n");
    scanf("%d", &size1);

    int *arr1 = malloc(size1*sizeof(int));
    int *p1=arr1;
    printf("Give me the elements of first array\n");
    int index1;
    for(index1 = 0 ; index1<size1; index1++)
    scanf("%d", p1++);

    merge(&arr1);
    return;
}

void merge(int **arr1) {
    while(**arr1)  //**arr1 is the content of the passed array, if there 
                  // is an int in it, print that out and increment to next one
    {
        printf("%d", **arr1); // ** is the content and * is the address i think, right?
        *arr1++;
    }
}
4

1 回答 1

3

您的merge()代码期望数组以零结尾。调用代码没有这样做,所以行为是未指定的(我在尝试你的代码时遇到了段错误)。

另一个问题是你应该把括号括起来*arr1

(*arr1)++;

当我使用此修改运行您的代码并为最后一个元素输入零时,您的代码运行良好。

于 2012-04-07T21:02:21.600 回答