view CbC-examples/selftype.c @ 108:7ad14f446135

add CbC-example/rectypeTest/
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jun 2012 20:30:24 +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;
}