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 trialFinn Terdal
15,997 PointsWhat's wrong with my syntax?
I'm trying to print the size (in bytes) of an array of floats of length 5. Here's my code:
float real_numbers[5]; printf("real_numbers is %ld bytes./n", sizeof(real_numbers));
Any ideas?
2 Answers
Kristen Law
16,244 PointsYour syntax appears to be correct. Make sure you're printing exactly what it tells you to though. It's looking for "Array real_numbers is %ld bytes.\n"
versus what you wrote: "real_numbers is %ld bytes./n"
.
Finn Terdal
15,997 PointsYeah, good catch. Thanks!