view CbC-examples/selftype.c @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +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;
}