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

Need some basic explanation

Print the length of the array real_numbers using the sizeof() function. Your output should look like the following: Array real_numbers can store x items.

https://teamtreehouse.com/forum/need-some-basic-explanation# What I tried:

float real_numbers[5]; printf("Array real_numbers can store %ld items", sizeof(real_numbers));

I guess I am just not really following what the question is asking. Help would be much appreciated. Thanks.

3 Answers

Stone Preston
Stone Preston
42,016 Points

you need to print the number of items the array can store. hint: to do this you are going to need to divide the size of the array by the size of the data type of the array itself

float real_numbers[5]; printf("Array real_numbers can store %ld items", sizeof(real_numbers)/sizeof(float));

so would this be the way to set it up?

Stone Preston
Stone Preston
42,016 Points

yep. but keep the code from task 2 in there as well. you need to have the code from all 3 tasks present in order to pass

Thanks for the quick reply. Very helpful.