Source1.c 156 B

123456789101112
  1. #include<stdio.h>
  2. #include<math.h>
  3. #include <malloc.h>
  4. #include <string.h>
  5. struct MyStruct
  6. {
  7. int a;
  8. struct MyStruct* next;
  9. };
  10. typedef struct MyStruct s;