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 trialDarwin Nunez
Courses Plus Student 933 Pointschallenge task 2 of 3 on ios development
i got this and is wrong I dont get it
printf("Array real_numbers %ld bytes", sizeof(real_numbers));
5 Answers
kirkbyo
15,791 PointsHi Darwin,
You simply forgot your "is". Here is what the print should look like
printf("Array real_numbers is %ld bytes", sizeof(real_numbers));
I hope that helps :)
Ozzie
Darwin Nunez
Courses Plus Student 933 Pointsthat helps
Darwin Nunez
Courses Plus Student 933 Pointsthat helps
Darwin Nunez
Courses Plus Student 933 Pointsfor this one that ask 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.
I got this its alright or am I missing something?
printf("Array real_numbers can store %ld items", sizeof(real_numbers) );
kirkbyo
15,791 PointsFor this question it wants you to divide the real_numbers by the float size
printf("Array real_numbers can store %ld items.\n", sizeof(real_numbers)/sizeof(float));
Ozzie
Tsan Kuo
Courses Plus Student 1,931 Pointsthis is a bug of whatever, I got the same situation my answer is :
float real_numbers[5] = {1.1, 2.2, 3.3 ,4.4 ,5.5}; printf("Array real_numbers can store %ld items", sizeof(real_numbers)/sizeof(float));
any I went xcode verified its bugfree.... but still : [Oops! It looks like Task 2 is no longer passing.]