See ./Assignment_Week01.pdf for the assignment.
make
# or
cmake -S . -B build
cmake --build build --target allWrite a program that computes the maximum of two integer numbers.
See src/exercise-5.c for where to write your solution.
Write a program that adds two numbers; write a program that adds three numbers; write a program that adds four numbers.
See src/exercise-6.c for where to write your solution.
Challenge: Write a program that computes the maximum number that can be produced by adding at most three arbitrary (possibly negative) integer numbers.
See src/exercise-7.c for where to write your solution.