I am currently experimenting with pointers, in my program I am trying to display the pointer variable's value in the standard output. Only a blank line appears, does someone know how to fix this and display 42?

Code:
#include <stdio.h>

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


int main()
{
    int *********i;
    
    point_funct(i);
    printf("%d", *********i);
    return (0);
}