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 trialJoseph Walsh
1,390 PointsPrinting Array length challenge. stuck...
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.
float real_numbers [5] = {};
printf("Array real_numbers can store %ld items.", sizeof(real_numbers) / sizeof(float));
It wanted me to give the array a length of 5 and now it wants me to print the top statement and i am doing something wrong! appreciate some help.
1 Answer
Stone Preston
42,016 Pointsyou need to be sure you dont delete code from previous tasks. Your code works, you just need to put the code from task 2 back in
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));