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

Justin Black
Justin Black
24,793 Points

Objective C Stage 3: Question Set 1, Question 2

in my Xcode, I run the following:

float real_numbers[] = { 1.11, 2.22, 3.33, 4.44, 5.55 }; printf("real_numbers is %ld bytes\n", sizeof(real_numbers));

and it works,

however in the online questions -- it tells me that it's not correct. My xcode displays it in the debugger showing real_numbers is 20 bytes which is the correct answer ( float is 4, 5 numbers... 5*4 = 20 )

1 Answer

Justin Black
Justin Black
24,793 Points

I figured this one out. The issue was in the fact that in the printf statement I was missing the word "Array" at the beginning. Everything else was correct.