Example 5: An example to illustrate invisible variables in foo() int a; foo(int **x) { int *temp; *x = &a; } main( ) { int **p, *q; p = &q; foo(p); }