Search:

Type: Posts; User: elisse_519

Search: Search took 0.01 seconds.

  1. hmmm about the linked lists, is this correct? ...

    hmmm about the linked lists, is this correct?

    typedef struct UrlList
    {char *url;
    struct UrlList *Unext;
    } SiteList;

    UrlList *uHead, *uTail;

    main()
  2. hmmm.. how do i exactly read by line then parse...

    hmmm.. how do i exactly read by line then parse it? i don't know the syntax... :(
  3. how do I read a text file in C? then make an array of linked lists from it?

    say for a each line in the text file there are several words. I want to read each word, which is separated by space. how do i do that? how do i get each word in the line? each line is treated like a...
Results 1 to 3 of 3