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

Nicolas Retamal
Nicolas Retamal
358 Points

Some Help

I dont know what i'm doing wrong, they ask me to write a function who add to float numbers and return the sum. Here is what I wrote:

float addtwo(float a ,float b);

float numero1 = 3.4; float numero2 = 5.7;

printf("Result %f",addtwo(numero1,numero2));

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

4 Answers

Gareth Borcherds
Gareth Borcherds
9,372 Points

Sorry you need to capitalize the Two in addTwo. Here is what worked for me

float addTwo(float x, float y) {

  return x+y;

}
Gareth Borcherds
Gareth Borcherds
9,372 Points

You have all you need in the last line.

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

All they are asking is for you to write the function "addTwo" or the implementation of it, which is exactly what you've done here. Just delete the rest and it'll pass.