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 trial

iOS Objective-C Basics (Retired) Pointers and Memory Array Size and Length

Finn Terdal
Finn Terdal
15,997 Points

What'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

Your 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
Finn Terdal
15,997 Points

Yeah, good catch. Thanks!