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 trialRob Sproat
493 PointsType Specifiers... It says I have the wrong one
int addTwo(int a, int b);
int foo = 2; int bar = 3;
int result = addTwo(foo, bar); printf ("addTwo %d", result);
int addTwo (int a, int b) { return a + b; }
Was doing the exercise and it says my one error is the wrong type specifier for printf("addtwo %d, result)
But don't see how it is....
Any help is much appreciated
1 Answer
Stone Preston
42,016 Pointsfirst off, all the challenge wants is the function implementation, you dont need a prototype or anything else. all you need is the implementation. you are very close, you just need to change your return values and parameter types to floats:
float addTwo (float a, float b) {
return a + b;
}
the above code is all you need to write for the challenge, you dont need anything else