#include <stdio.h> #include <stdlib.h> void add(int **p) { static int i = 200; *p=&i; } int main() { int **y; add(y); printf("%d\n", **y); exit(1); }