LOG710-lab3

  1. Compile lib: gcc -o memory.o -c memory.c
  2. Compile program test: gcc program-test.c memory.o
  3. Running program: ./a.out

In one command (build and run)

  • gcc -g -o memory.o -c memory.c && gcc program-test.c memory.o && ./a.out

TODO Utilisation guide for program test.