2021-07-04 16:59:09 +02:00

14 lines
121 B
C

void foo(int **a)
{
int b = 1;
**a = b;
}
int main()
{
int b;
int *c = &b;
foo(&c);
return 0;
}