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) Pointers and Memory Array Size and Length

Patrick Mamaid
Patrick Mamaid
9,863 Points

Challenge task 2 of 3

I have this as my solution:

array_length.mm
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
Paul Cook
4,112 Points

I 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.