#include <stdio.h>

// Prototipo de la función
void ft_ultimate_ft(int *********nbr);

void ft_ultimate_ft(int *********nbr)
{
    *********nbr = 42;
}

int main(void)
{
    int number;
    int *ptr1 = &number;
    int **ptr2 = &ptr1;
    int ***ptr3 = &ptr2;
    int ****ptr4 = &ptr3;
    int *****ptr5 = &ptr4;
    int ******ptr6 = &ptr5;
    int *******ptr7 = &ptr6;
    int ********ptr8 = &ptr7;
    int *********ptr9 = &ptr8;

    ft_ultimate_ft(ptr9);
    printf("El valor de 'number' es: %d\n", number);

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: