[prev] [index] [next]

Exercise: Testing the LL and AR Implementations of Quacks

  • Write a tester to call functions in the interface quack.h
  • Build the executable using

    gcc -Wall -Werror -O quackLL.c tester.c
    

    to test the LL implementation

  • Build the executable using

    gcc -Wall -Werror -O quackAR.c tester.c
    

    to test the AR implementation