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 PointsPrint the length of the array real_numbers using the sizeof() function. Your output should look like the following: Arra
I got this for this question printf("Array real_number can store %ld items", size of(real_numbers));
would it this be correct? or something wrong in my code?
1 Answer
Stone Preston
42,016 Pointsyou are close. what you currently have prints the size in bytes of the entire array.
you need to print the number of items in the array, not the size in bytes. since we know the array is storing float types, dividing the size of the array by the size of a float gives you the number of items in the array
float real_numbers[5];
printf("Array real_numbers is %ld bytes", sizeof(real_numbers));
printf("Array real_numbers can store %ld items.", sizeof(real_numbers)/sizeof(float));
in your code above you also mispelled sizeof as size of and left the s of of real_numbers