using namespace std; #include struct S { int value; S *next; }; int main () { S x = {4 , NULL}; return 0; }