Search:

Type: Posts; User: eva

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,511

    stringToList takes an array of char and converts...

    stringToList takes an array of char and converts it to a listADT containing the letters in the array:


    listADT stringToList(char str[])
    {
    listADT list = createList();
    int index = 0;
    char c...
  2. Replies
    3
    Views
    1,511

    New to C... questions about this code...ADTs

    Hi,

    In a file called itemADT.c I have specified the itemType data type to contain a listADT (having already written this library) and an integer, which will eventually represent the no. of times...
Results 1 to 2 of 2