What does a && operator do when there is no left side in C?
It’s a gcc-specific extension, a unary && operator that can be applied to a label name, yielding its address as a void* value. As part of the extension, goto *ptr; is allowed where ptr is an expression of type void*. It’s documented here in the gcc manual. You can get the address of a label … Read more