#include struct Data { int x; }; int main( int argc, char *argv[] ) { struct Data hello; hello.x =1; struct Data *p ; p = &hello; printf("%d\n", p->x); }