1
struct Node { int v; struct Node* next; }; int use_struct_ptr(){ struct Node n={1,0}; return n.v; }