m19342.c 199 B

123456789101112
  1. struct Node
  2. {
  3. int data[25];
  4. };
  5. struct Node hello(int name) {
  6. struct Node x = {999, 1, 2, 3, 4, 5, 6, 7, 8, 9,
  7. 0, 1, 2, 3, 4, 5, 6, 7 ,8, 9,
  8. 1, 2, 3, 4, 5};
  9. return x;
  10. }