Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMichael Iman
Courses Plus Student 1,257 PointsDefining return and parameter types as "float"
I'm trying to implement a function with no need to write the main function, just writing out the implementation for the function exercise as addTwo function.
This was my code
int addTwo (float cm_to_in, float in_to_ft); {
return cm_to_in + in_to_ft);
}
Here is the result: Make sure you've defined the return type and both paramter types as 'float' and that you are returning the sum of the arguments as a result.
What can I do to correct this error? It is greatly appreciated!
Michael Iman
Courses Plus Student 1,257 PointsMichael Iman
Courses Plus Student 1,257 PointsGot it answered. Thanks!