Hello all, I am a beginner in C programming and have come up on a problem. I need to create 4 functions, 3 of the functions will get the users input (the 3 inputs will be the length of the sides of a triangle) and 1 function will be displaying what type of triangle it is (equilateral, isosceles or scalene)
Now this is my first time creating functions, I would know how to do use using traditional printf and scanf methods but my problem is that I need to create functions to get the input and display the answer such, the functions would named as so:
get_FirstLength, get_SecondLength, get_ThirdLength
and display_Message ( either equilateral, isosceles, scalene)
The material I have googled has been a little lacking as far as actual function creation and is more in depth about using pre made functions, is there anyone who can recommend me some reading about this type of function creation or can suggest a method for creating such functions.
Thank You