//This is the main file in our program //This is where we drive the program from and where we //make calls to our modules. We need to include the //header file for each module that we want to use functions //from #include //TODO: Include the header file: #include "maths.h" int main (void) { int number = 13; int number2 = 15; int radius = 5; printf("The square of the number %d is %d\n", number, square(number)); printf("THe sum of numbers %d and %d is %d\n", number, number2, sum(number, number2)); printf("THe circumference of circle with radius %d is %lf\n", radius, circumference(radius)); return 0; }