如何在C中使用while来声明多个指针指针?

时间:2017-08-24 11:56:46

标签: c loops pointers while-loop

我有这段代码:

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

void ft_ultimate_ft(int *********nbr)
{
    printf("%d", *********nbr);
}

int main(){
    /*Start of problem*/
    int *a;
    int **b = &a;
    int ***c = &b;
    int ****d = &c;
    int *****e = &d;
    int ******f = &e;
    int *******g = &f;
    int ********h = &g;
    int *********i = &h;
    /*end of problem*/
    *********i = 42;
    ft_ultimate_ft(i);
    return 0;
}

我需要在循环中包含指针指针声明(例如,while)。需要减少声明数量。

1 个答案:

答案 0 :(得分:0)

我假设我已正确理解你的问题,即使用循环创建一个指向数字的多指针,然后为其赋值。

我写了一段代码,部分完成了您的要求,但仍然需要知道循环后有多少层。

#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>
void ft_ultimate_ft(int *********nbr)
{
    printf("%d", *********nbr);
}

int main() {
    int t = 10;
    int n = 8;
    void * p = &t;
    for (int i = 0; i < n; i++)
    {
        void* * s = (void **)malloc(sizeof(void*));
        *s = p;
        p = s;
    }
    /*end of problem*/
    int *********real = (int *********)p;
    *********real = 42;
    ft_ultimate_ft(real);
    return 0;
}

哪个输出42

程序的清理部分未写入

PS。在你的代码中,指针a是不确定的,我不认为你的原始代码可以正常工作。