如果我有静态变量:
static int a;
我想要一个指向这个变量的指针,指针应该看起来像:
static int* f;
f=&a;
如果我将这个 f 返回到一个函数调用,并带有一个指向静态 int* 类型指针的赋值语句,那么这个变量是否可以在该函数中访问?
还:
int a;
static int* f;
f=&a; // does this mean now a is a static variable and it will be retained until the program ends?
static int b;
int* c;
c=&n; // is this possible?