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 trialCharles Manalili
531 PointsFunctional Programming in C Task 1
why is this not passing the task?
int addTwo(int a, int b); int main() {
float x = 5;
float y = 7;
int result = addTwo(x, y);
printf("funky math %d\n", result);
return 0;
} int addTwo(int a, int b) { return a + b; }
1 Answer
Navid Mirzaie Milani
6,274 Pointsfloat a = 3; float b = 2;
float addTwo(float a, float b){ return a+b; }
your parameters and return type of your functions are integers while you're have declared floats ;) the above code will pass the test.