I wanted to see if I could initialize a global variable to point to itself:
#include <stdio.h>
struct foo { struct foo *a, *b; } x = { &x, &x };
int main()
{
printf("&x = %p, x.a = %p, x.b = %p\n", &x, x.a, x.b);
return 0;
}
This code compiles and runs as expected with gcc (all three pointers print identically).
I want to know:
- Is this reliable?
- Is this standard?
- Is this portable?
EDIT: Just to clarify, I am questioning the availability of the address of x in its own initializer.
%pexpects avoid*, but the arguments arestruct foo*s. – Daniel Fischer May 29 '12 at 21:23void *from any other pointer in order to allow functions such asmallocto work without explicit conversions? – Matt May 29 '12 at 21:25printf, no such conversion happens (varargs, no type checking at all). Soprintfgetsstruct foo*s, but the format string requiresvoid*. Your compiler should warn you about that (if you turn the warning level up). Pedantically, that's even undefined behaviour, though it'll work as intended on most common platforms (the standard doesn't guarantee that all pointers have the same size and structure, but usually they have). – Daniel Fischer May 29 '12 at 21:33