[ create a new paste ] login | about

Link: http://codepad.org/YHjjXDYh    [ raw code | fork ]

C, pasted on Mar 1:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

typedef struct tagNode
{
   char word[40];
   int count;
   struct tagNode *next;
   struct tagNode *prev;
}Node;
 
int main()
{
   Node *p;
   return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: