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 trialHumza Choudry
237 Pointshow to print the first value 2.71828 in math_constants array. printf("Jorge's number = %f\n", math_constants[0]); ???
float math_constants[2] = {2.71828, 1.41428};
printf("Jorge's number = %f\n", math_constants[1]);
what am i typing in wrong.
float math_constants[2] = {2.71828, 1.41421};
printf("Humza's number = %f\n", math_constants[0]);
printf("Humza's number = %f\n", math_constants[1]);
2 Answers
Stone Preston
42,016 Pointsthe task states: Your output should look like this: Euler's number = 2.71828. so your output needs to look like that exactly: Euler's number = 2.71828
, not Humza's number = 2.71828
Since 2.17828 is at index 0, you need to use
float math_constants[2] = {2.71828, 1.41421};
printf("Euler's number = %f\n", math_constants[0]);
Humza Choudry
237 Pointslol, Thanks for the help man. :D
Stone Preston
42,016 Pointsno problem