[ create a new paste ] login | about

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

C, pasted on Sep 14:
1
2
3
4
5
6
7
typedef struct atom {
  int element;
  struct atom *next;
};
int main(){
    struct atom *n;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: