Programming

(C) struct example

steloflute 2014. 5. 1. 10:37

#include <stdio.h>

struct cons {
  union {
    int v_int;
  } car;
  struct cons *cdr;
};

int main() {
  struct cons a = {{1}, NULL};
  printf("%d\n", a.car.v_int);
  return 0;
}