[ create a new paste ] login | about

Link: http://codepad.org/32bgVncE    [ raw code | output | fork ]

C, pasted on Nov 25:
1
2
3
4
5
6
typedef struct node *link;
struct node {
	char item;
	link l, r;
};
typedef link Item1;


Output:
1
2
In function `_start':
undefined reference to `main'


Create a new paste based on this one


Comments: