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 trialAaron Eckhart
3,341 PointsWhy a struct?
Why are the size and origin variables structs and not arrays? Would they ever need anything besides an int or maybe a float? Is there any benefit in using struct vs array if you know its only going to be one type?
Thx
2 Answers
Andrew Shook
31,709 PointsI'm not sure of the exact reason, but I do know that in C arrays can not store two different datatype ( thats why they made structs which are similar in structure but can hold different data types). I would guess that the struct in question here is probably storing numbers but of different types, i.e. floats and ints.
Aaron Eckhart
3,341 PointsThanks!