Advertisement
Guest User

main

a guest
Sep 14th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. //MAIN
  2.  
  3. #include "header.h"
  4.  
  5. void main( ) //(int argc, char *argv[])
  6. {
  7.   char p[10];
  8.   LINK e;
  9.   e = malloc(sizeof(ELEMENT));
  10.   scanf("%s",&p);
  11.   e = string_to_list(&p);
  12.  
  13.   system("PAUSE"); 
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement