Due: Monday 9/27 10:00am

Task at hand:

  • Modify your euler assignment such that you have the following files:
    • euler.c
      • Your euler assignment, modified to only contain the euler problem functions.
      • Get rid of main.
      • Do not put separate functions headers here (function definitions will have the header line still of course).
    • euler.h
      • The function headers for the functions in euler.c
    • main.c
      • Add #include "euler.h" at the top.
      • Has a main function that correctly runs all the functions in euler.c
    • makefile
      • Appropriately compile euler.c and main.c separately.
      • Generates an executable file called euler