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 trial

iOS Objective-C Basics (Retired) Functional Programming in C Functions

int addtwo(a, b){ return a +b ; }

What am i doing wrong?

functions.c
int addtwo (a, b){

return float a + b;
}

4 Answers

First, if you're going to return a float you have to specify the function as type float. Next, specify the type of your parameters.

float addTwo(float a, float b){
   return a + b;
}
Holger Liesegang
Holger Liesegang
50,595 Points

Hi Adam!

You have to use a float instead of an integer as the return value (float addTwo), the function has to be named "addTwo" (you wrote addtwo), the type of the arguments is missing (float a, float b) and you don't need the float in the return statement.

float addTwo(float a, float b) {
  return a + b;
}

Thank you both

Spoke to soon. Im still receiving an error.....grhhh

Ok. found out (addT<----wo) function name is case sensitive!