In this assignment, you will implement a C function to add two numbers.
- Implement the
add_numbers
function inadd_numbers.c
. This function should take two integers as input and return their sum as an integer. - Test your implementation by running
main.c
. It will call youradd_numbers
function and print the result. - Once you have successfully implemented the function, push your changes to the GitHub repository.
Good luck!