Has the following code any practical utility apart from showing the working of pointers?
I got it while learning c in which the tutorial showings the features of pointer.
Does a C programmer use this kind of code where a int pointer has been declared first and assigned a value inside a function?
Regards..
void check(int**);
int main()
{
int *j;
check(&j);
}
void check(int **i){
int a = 20;
*i = &a;
}