struct.cpp 125 B

12345678910111213
  1. struct MyStruct
  2. {
  3. int x;
  4. struct s* next;
  5. };
  6. int foo()
  7. {
  8. MyStruct s;
  9. printf("%d\n", s.x);
  10. return s.x;
  11. }