int main(int argc, char * argv[]) {
int a = 10;
int * sp = &a;
int * * dp1 = &sp;
int * * dp2 = &&a; // NG
int * * dp3 = &(&a); // NG
int * * dp4 = &((int *) &a); // NG
}
$ cc test.c
test.c: In function ‘main’:
test.c:6:17: error: lvalue required as unary ‘&’ operand
int * * dp3 = &(&a); // NG
^
test.c:7:17: error: lvalue required as unary ‘&’ operand
int * * dp4 = &((int *) &a); // NG
^
test.c:5:3: error: label ‘a’ used but not defined
int * * dp2 = &&a; // NG
^
Because
&
gives you the address of a varibale and&a
is not a variable.The C 11 Draft specifies the following:
To get around this "limitation" one could introduce temporary storage using a compound literal like this (assuming C99 at least):
As a side note referring to the error message below:
gcc (and probably others) define an extension to the C-Standard allowing the use of the
&&
operator on a single operant if the operant identifies a label. (More on this here: https://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html)Example: