Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Patrick Mamaid
9,863 PointsChallenge task 2 of 3
I have this as my solution:
float real_numbers[5];
printf("Array real_numbers can store %ld items", sizeof(real_numbers)/sizeof(float) );
I have a feeling this works.. I've tested this in the IDE and it does not complain, the page is not accepting my answer, it complains about this:
"Bummer! That was not the correct string. Do you have the correct format character? sizeof(real_numbers) returns a long. That format character is '%ld'."
Any Ideas?
Paul Cook
4,112 PointsPaul Cook
4,112 PointsI got tripped up by this too. You have to add the printf you have above to the complete solution for the 2nd part. So you should have 2 printf statements for part 3.