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 trialTawanda Kanyangarara
4,284 Pointswhat is the correct answer for this question, when i run it through xcode i get 5 but this keeps telling me i am wrong?
float real_numbers[5]; or float real_numbers[] = {11.11,22.22,33.33,44.44,55.55};
printf("Array real_numbers is %ld items.", sizeof(real_numbers)/sizeof(float));
should print out 5 but it doesnt allow me to continue? any help please, i dont know why it doesnt work
1 Answer
Thomas Nilsen
14,957 Pointsfloat real_numbers[5];
printf("Array real_numbers is %ld bytes.", sizeof(real_numbers));
What you wrote outputs the array length. You were asked to output the size of the array in bytes ;)
The last answer should look like this:
printf("Array real_numbers can store %ld items.", sizeof(real_numbers)/sizeof(float));