view CbC-examples/selftype.c @ 121:49957f95a4d1

fix fntype
author anatofuz
date Fri, 09 Mar 2018 19:18:14 +0900
parents 5211b774b8b5
children
line wrap: on
line source


/*
struct node {
  int num;
  struct node *child;
  //  struct node **array_node;
};
*/

#include <stdio.h>

struct node {
  int num;
  selftype *child;
};

int main() {
  struct node n, nc;
  n.num = 1;
  nc.num = 2;
  n.child = &nc;

  printf("n.num = %d\n",n.num);
  printf("n.child.num = %d\n",n.child->num);

  return 0;
}